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: 139f9ac060e38d3feb7046bdf2fd779be7c56bd8 (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
37
<!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="icon" href="{{ "/favicon.ico" | relURL }}" type="image/x-icon">
    <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" | relURL }}">
    <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/styles/default.min.css">
    <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/highlight.min.js"></script>
    <script>hljs.initHighlightingOnLoad();</script>
</head>

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