baseof.html (2584B)
1 <!DOCTYPE html> 2 <html lang="{{ .Site.LanguageCode }}"> 3 <head> 4 <meta charset="utf-8"> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 6 <title>{{ .Site.Title }}</title> 7 {{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }} 8 <meta name="viewport" content="width=device-width, initial-scale=1"> 9 <meta name="robots" content="all,follow"> 10 <meta name="googlebot" content="index,follow,snippet,archive"> 11 <link rel="stylesheet" href="{{ "artist-gallery-theme/css/terminal-0.7.4.min.css" | relURL }}"> 12 <link rel="stylesheet" href="{{ "artist-gallery-theme/css/animate-4.1.1.min.css" | relURL }}"> 13 <link rel="stylesheet" href="{{ "artist-gallery-theme/css/console.css" | relURL }}"> 14 {{ ` 15 <!--[if lt IE 9]> 16 <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> 17 <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> 18 <![endif]--> 19 ` | safeHTML }} 20 21 {{- partial "favicon.html" . -}} 22 {{ with .OutputFormats.Get "RSS" }} 23 {{ printf `<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML }} 24 {{ end }} 25 {{- partial "opengraph.html" . -}} 26 {{- partial "twitter_cards.html" . -}} 27 {{ template "_internal/google_analytics.html" . }} 28 29 {{- partial "header.html" . -}} 30 </head> 31 <body class="terminal"> 32 <div class="container"> 33 <div class="terminal-nav"> 34 <header class="terminal-logo"> 35 <div class="logo terminal-prompt"> 36 <a href="{{ relURL "/" }}" class="no-style {{ with .Site.Params.TitleCutting }}site-name{{ end }}">{{ .Site.Title }}</a> 37 </div> 38 <button class="mobile-menu-toggle" aria-label="Toggle menu">☰</button> 39 </header> 40 <nav class="terminal-menu"> 41 <ul vocab="https://schema.org/" typeof="BreadcrumbList"> 42 {{ range $index, $element := .Site.Params.navlinks }} 43 <li property="itemListElement" typeof="ListItem"> 44 <a property="item" typeof="WebPage" href="{{ relURL .url }}"> 45 <span property="name">{{ .name }}</span></a> 46 <meta property="position" content="{{ add $index 1}}" /> 47 </li> 48 {{ end }} 49 </ul> 50 </nav> 51 </div> 52 </div> 53 54 <div class="container {{ .Site.Params.animateStyle }}" > 55 {{ block "main" . }} 56 {{ end }} 57 {{ partial "footer.html" . }} 58 </div> 59 </body> 60 </html>