89 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html lang="{{ .Site.LanguageCode | default "en-us" }}">
 | 
						|
  <head>
 | 
						|
    <title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} // {{ .Site.Title }}{{ end }}</title>
 | 
						|
    <link rel="shortcut icon" href="{{ .Site.Params.favicon | default "/favicon.ico" }}" />
 | 
						|
    <meta charset="utf-8" />
 | 
						|
    {{ hugo.Generator }}
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1" />
 | 
						|
    <meta name="author" content="{{ .Site.Params.author | default "John Doe" }}" />
 | 
						|
    <meta name="description" content="{{ if .IsHome }}{{ .Site.Params.description }}{{ else }}{{ .Description }}{{ end }}" />
 | 
						|
    {{ $style := resources.Get "css/main.scss" | resources.ExecuteAsTemplate "css/main.scss" . | resources.ToCSS | resources.Minify | resources.Fingerprint -}}
 | 
						|
    <link rel="stylesheet" href="{{ $style.RelPermalink }}" />
 | 
						|
    {{ range .AlternativeOutputFormats -}}
 | 
						|
      {{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
 | 
						|
    {{ end -}}
 | 
						|
    {{ partial "analytics.html" }}
 | 
						|
    {{ template "_internal/google_analytics.html" . }}
 | 
						|
    {{ template "_internal/twitter_cards.html" . }}
 | 
						|
    {{ template "_internal/opengraph.html" . }}
 | 
						|
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    <header class="app-header">
 | 
						|
      <a href="{{ .Site.BaseURL }}"><img class="app-header-avatar" src="{{ .Site.Params.avatar | default "avatar.jpg" | relURL }}" alt="{{ .Site.Params.author | default "John Doe" }}" /></a>
 | 
						|
      <span class="app-header-title">{{ .Site.Title }}</span>
 | 
						|
      <p>{{ .Site.Params.description | default "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc vehicula turpis sit amet elit pretium." }}</p>
 | 
						|
      <strong>Blog Navigation</strong>
 | 
						|
      {{- with .Site.Menus.main }}
 | 
						|
      <nav class="app-header-menu">
 | 
						|
        {{- range $key, $item := . }}
 | 
						|
          {{- if ne $key 0 }}
 | 
						|
            {{ $.Site.Params.menu_item_separator | default " - " | safeHTML }}
 | 
						|
          {{ end }}
 | 
						|
          <a class="app-header-menu-item" href="{{ $item.URL }}">{{ $item.Name }}</a>
 | 
						|
        {{- end }}
 | 
						|
      </nav>
 | 
						|
      {{- end }}
 | 
						|
      {{- with .Site.Menus.featured }}
 | 
						|
      <br /><strong>Featured Projects</strong>
 | 
						|
      <nav class="app-header-menu">
 | 
						|
        {{- range $key, $item := . }}
 | 
						|
          {{- if ne $key 0 }}
 | 
						|
            {{ $.Site.Params.menu_item_separator | default " - " | safeHTML }}
 | 
						|
          {{ end }}
 | 
						|
          <a class="app-header-menu-item" href="{{ $item.URL }}">{{ $item.Name }}</a>
 | 
						|
        {{- end }}
 | 
						|
      </nav>
 | 
						|
      {{- end }}
 | 
						|
      {{- with .Site.Menus.secondary }}
 | 
						|
      <br /><strong>What I am doing in the</strong>
 | 
						|
      <nav class="app-header-menu">
 | 
						|
        {{- range $key, $item := . }}
 | 
						|
          {{- if ne $key 0 }}
 | 
						|
            {{ $.Site.Params.menu_item_separator | default " - " | safeHTML }}
 | 
						|
          {{ end }}
 | 
						|
          <a class="app-header-menu-item" href="{{ $item.URL }}">{{ $item.Name }}</a>
 | 
						|
        {{- end }}
 | 
						|
      </nav>
 | 
						|
      {{- end }}
 | 
						|
      {{- with .Site.Menus.tertiary }}
 | 
						|
      <br /><strong>Auxillary Pages</strong>
 | 
						|
      <nav class="app-header-menu">
 | 
						|
        {{- range $key, $item := . }}
 | 
						|
          {{- if ne $key 0 }}
 | 
						|
            {{ $.Site.Params.menu_item_separator | default " - " | safeHTML }}
 | 
						|
          {{ end }}
 | 
						|
          <a class="app-header-menu-item" href="{{ $item.URL }}">{{ $item.Name }}</a>
 | 
						|
        {{- end }}
 | 
						|
      </nav>
 | 
						|
      {{- end }}
 | 
						|
      <br /><strong>Me Elsewhere on the Internet</strong>
 | 
						|
      {{- with .Site.Params.social }}
 | 
						|
      <div class="app-header-social">
 | 
						|
        {{ range . }}
 | 
						|
          <a href="{{ .url }}" target="_blank" rel="noreferrer noopener me">
 | 
						|
            {{ partial "icon.html" (dict "ctx" $ "name" .icon "title" .name) }}
 | 
						|
          </a>
 | 
						|
        {{ end }}
 | 
						|
      </div>
 | 
						|
      {{- end }}
 | 
						|
    </header>
 | 
						|
    <main class="app-container">
 | 
						|
      {{ block "main" . }}
 | 
						|
        {{ .Content }}
 | 
						|
      {{ end }}
 | 
						|
    </main>
 | 
						|
  </body>
 | 
						|
</html>
 |