Welcome to mirror list, hosted at ThFree Co, Russian Federation.

header.html « partials « layouts - github.com/lubang/hugo-hello-programmer-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e865d205fd24255223108becb1a5a05f8ce241b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>

<head>
    <base href="{{ .Site.BaseURL }}">
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <title>{{ .Title }} {{ if ne .Title .Site.Title }} &middot; {{ .Site.Title }}{{ end }}</title>
    <link rel="canonical" href="{{ .Permalink }}">
    {{ if .RSSlink }}
    <link href="{{ .RSSlink }}" rel="alternate" type="application/rss+xml" title="{{ .Title }}" />
    {{ end }}
    <link rel="stylesheet" href="{{ "/css/styles.css" | absURL }}">
    <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
    <link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.6.0/styles/default.min.css">
    <script src="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.6.0/highlight.min.js"></script>
    <script>hljs.initHighlightingOnLoad();</script>
</head>

<body>
    <div class="navbar">
        <ul>
            <li><a href="{{ "/" | absURL }}">HOME</a></li>
            <li><a href="{{ "/categories" | absURL }}">CATEGORIES</a></li>
            <li><a href="{{ "/project" | absURL }}">PROJECTS</a></li>
        </ul>
    </div>
    <div class="container">
      <div class="title">
        <div>
          <a href="{{ "/" | absURL }}">
            <img src="{{ "/images/logo.svg" | absURL }}" />
          </a>
        </div>
        <div><img src="{{ "/images/seperator.svg" | absURL }}" /></div>
        <div class="logo-title">hello, world!</div>
      </div>