Skip to content
Snippets Groups Projects
Header.vue 1.14 KiB
Newer Older
  • Learn to ignore specific revisions
  • <template>
      <header id="header" class="SectionHeader-container u-container u-print-hide">
        <div class="SectionHeader u-limitWidth-12 u-align-center">
          <div class="SectionHeader-metaSection ">
            <a href="#" class="SectionHeader-logoSection">
              <img class="SectionHeader-logo SectionHeader-logo--large" :src="$withBase('img/logo-lg.svg')" alt="ITVSH Design System" width="437" height="40"/>
            </a>
          </div>
    
          <div class="SectionHeader-menuSection" id="primarynavigation" aria-label="Primär">
            <a href="#" class="SectionHeader-logoSection" tabindex="-1">
              <img class="SectionHeader-logo SectionHeader-logo--small" :src="$withBase('img/logo-sm.svg')" alt="ITVSH Design System" width="49" height="40"/>
            </a>
    
    Christopher Krawietz's avatar
    Christopher Krawietz committed
            <p class="Base-h1 u-textTransform--upper">Dokumentation</p>
            <div class="SectionHeader-backLink">
              <a href="https://www.design-system.sh/" class="Base-link">
                zum <span class="u-textTransform--upper">Digital Design System</span>
              </a>
    
            </div>
          </div>
        </div>
      </header>
    </template>
    
    <script>
    export default {
      name: "Header"
    }
    </script>