// Copyright 2016 The Domain Registry Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. {namespace registry.soy.console autoescape="strict"} /** * Common header fragment. */ {template .header} {@param app: string} /** App identifier, e.g. 'admin', 'registrar'. */ {@param? subtitle: string} /** Extra stuff to put in {@code }. */ <!doctype html> <meta charset="utf-8"> {literal}<!-- CHARLESTON ROAD REGISTRY SHARED REGISTRATION SYSTEM ICANN-GTLD-AGB-20120604 _____ _ | __ \ (_) | | | | ___ _ __ ___ __ _ _ _ __ | | | |/ _ \| '_ ` _ \ / _` | | '_ \ | |__| | (_) | | | | | | (_| | | | | | |_____/ \___/|_| |_| |_|\__,_|_|_| |_| | __ \ (_) | | | |__) |___ __ _ _ ___| |_ _ __ _ _ | _ // _ \/ _` | / __| __| '__| | | | | | \ \ __/ (_| | \__ \ |_| | | |_| | |_| \_\___|\__, |_|___/\__|_| \__, | __/ | __/ | |___/ |___/ -->{/literal} <title>Domain Registry {if isNonnull($subtitle)} - {$subtitle}{/if} {switch DEBUG} {case google.registry.ui.ConsoleDebug.PRODUCTION} {case google.registry.ui.ConsoleDebug.DEBUG} {case google.registry.ui.ConsoleDebug.RAW} {if $app == 'admin'} {else} {/if} {default} {/switch} {/template} /** * Happy little googley bar. */ {template .googlebar} {@param username: string} {@param logoutUrl: string} {@param logoFilename: string} {@param productName: string} {/template} /** Appbar add/back, edit/cancel appbar. */ {template .appbarButtons}
{/template} /** * Create button for domain, contact and host. */ {template .navCreateButton} Create {/template} /** * Legal notices included as footer. */ {template .footer}
{/template}