header.html 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <link rel="canonical" href="{{ .Permalink }}">
  8. {{ if .RSSLink }}
  9. <link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Title }}" />
  10. {{ end }}
  11. <link href="https://fonts.googleapis.com/css?family=Miriam+Libre:700&text=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz%26" rel="stylesheet">
  12. <link href="https://fonts.googleapis.com/css?family=PT+Sans:400,400i,700" rel="stylesheet">
  13. <link rel="stylesheet" href="/css/prism.css" />
  14. <link rel="stylesheet" type="text/css" href="/css/styles.css">
  15. <title>{{ .Title }} | {{ .Site.Title }}</title>
  16. </head>
  17. <body>
  18. <nav aria-label="library">
  19. <div id="sidebar" class="nav-collapse">
  20. <!-- sidebar menu start-->
  21. <ul class="sidebar-menu">
  22. {{ $currentNode := . }}
  23. {{ range .Site.Menus.main }}
  24. {{ if .HasChildren }}
  25. <li class="sub-menu{{if $currentNode.HasMenuCurrent "main" . }} active{{end}}">
  26. <a href="javascript:;" class="">
  27. {{ .Pre }}
  28. <!--<i class="icon_desktop"></i>-->
  29. <span>{{ .Name }}</span>
  30. <span class="menu-arrow fa {{if $currentNode.HasMenuCurrent "main" . }}fa-angle-down{{else}}fa-angle-right{{end}}"></span>
  31. </a>
  32. <ul class="sub{{if $currentNode.HasMenuCurrent "main" . }} open{{end}}">
  33. {{ range .Children }}
  34. <li{{if $currentNode.IsMenuCurrent "main" . }} class="active"{{end}}><a href="{{.URL}}">{{ .Name }}</a> </li>
  35. {{ end }}
  36. </ul>
  37. {{else}}
  38. <li>
  39. <a class="" href="{{.URL}}">
  40. {{ .Pre }}
  41. <!--<i class="icon_house_alt"></i>-->
  42. <span>{{ .Name }}</span>
  43. </a>
  44. {{end}}
  45. </li>
  46. {{end}}
  47. <li> <a href="https://github.com/spf13/hugo/issues" target="blank"><i class='fa fa-life-ring'></i> <span>Issues & Help</span></a> </li>
  48. {{ if .IsPage }}
  49. {{ $File := .File }} {{with $File.Path }}<li><a href="https://github.com/spf13/hugo/edit/master/docs/content/{{ $File.Dir }}{{ $File.LogicalName }}" target="blank"><i class='fa fa-edit'></i> Refine this Page</a> </li>{{end}}
  50. {{ end }}
  51. </ul>
  52. <!-- sidebar menu end-->
  53. </div>
  54. </nav>