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

index.html - github.com/htdvisser/hugo-base16-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ad0c000864cee42b6cbac07fe2f3eb7c49b01b9 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="">
<meta name="generator" content="Hugo 0.37.1" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://htdvisser.github.io/hugo-base16-theme/css/style.css" type="text/css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700" type="text/css">
<link rel="alternate" href="https://htdvisser.github.io/hugo-base16-theme/index.xml" type="application/rss+xml" title="Hugo Base16 Theme">
<title>Hugo Base16 Theme</title>
</head>
<body>

<header>
  <div class="container clearfix">
    <a class="path" href="https://htdvisser.github.io/hugo-base16-theme/">[Hugo Base16 Theme]</a>
    <span class="caret"># _</span>
    <div class="right">
      
    </div>
  </div>
</header>

<div class="container">



<main role="main" class="homepage">

  
<h1 class="site-title">
  <span class="base05">[</span><span class="base08">b</span><span class="base09">a</span><span class="base0a">s</span><span class="base0b">e</span><span class="base0c">1</span><span class="base0d">6</span><span class="base05">]</span>
  <span class="base05"># _</span>
</h1>

<div class="hero-logo">
  <img src="https://htdvisser.github.io/hugo-base16-theme/img/base16-eighties.svg">
</div>

<div style="text-align: center;">
  Add your own "<code>layouts/partials/hero.html</code>" to replace this text.
</div>


  <h1 class="headline">Recent Posts</h1>

  <div class="article-list">
    
      
<article class="list-item" itemscope itemtype="http://schema.org/Blog">
  <h2 class="headline" itemprop="headline"><a href="https://htdvisser.github.io/hugo-base16-theme/post/creating-a-new-theme/">Creating a New Theme</a></h2>
  <div class="meta">

    <span class="key">published on</span>
    <span class="val"><time itemprop="datePublished" datetime="2014-09-28">September 28, 2014</time></span>

  </div>
  <section class="summary">
    Introduction This tutorial will show you how to create a simple theme in Hugo. I assume that you are familiar with HTML, the bash command line, and that you are comfortable using Markdown to format content. I&rsquo;ll explain how Hugo uses templates and how you can organize your templates to create a theme. I won&rsquo;t cover using CSS to style your theme.
We&rsquo;ll start with creating a new site with a very basic template.  <a href="https://htdvisser.github.io/hugo-base16-theme/post/creating-a-new-theme/">Read More...</a>
  </section>
</article>

    
      
<article class="list-item" itemscope itemtype="http://schema.org/Blog">
  <h2 class="headline" itemprop="headline"><a href="https://htdvisser.github.io/hugo-base16-theme/post/migrate-from-jekyll/">Migrate to Hugo from Jekyll</a></h2>
  <div class="meta">

    <span class="key">published on</span>
    <span class="val"><time itemprop="datePublished" datetime="2014-03-10">March 10, 2014</time></span>

  </div>
  <section class="summary">
    Move static content to static Jekyll has a rule that any directory not starting with _ will be copied as-is to the _site output. Hugo keeps all static content under static. You should therefore move it all there. With Jekyll, something that looked like
▾ &lt;root&gt;/ ▾ images/ logo.png  should become
▾ &lt;root&gt;/ ▾ static/ ▾ images/ logo.png  Additionally, you&rsquo;ll want any files that should reside at the root (such as CNAME) to be moved to static.  <a href="https://htdvisser.github.io/hugo-base16-theme/post/migrate-from-jekyll/">Read More...</a>
  </section>
</article>

    
      
<article class="list-item" itemscope itemtype="http://schema.org/Blog">
  <h2 class="headline" itemprop="headline"><a href="https://htdvisser.github.io/hugo-base16-theme/post/goisforlovers/">(Hu)go Template Primer</a></h2>
  <div class="meta">

    <span class="key">published on</span>
    <span class="val"><time itemprop="datePublished" datetime="2014-04-02">April 02, 2014</time></span>

  </div>
  <section class="summary">
    Hugo uses the excellent go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in go templates.
This document is a brief primer on using go templates.  <a href="https://htdvisser.github.io/hugo-base16-theme/post/goisforlovers/">Read More...</a>
  </section>
</article>

    
  </div>



  <h1 class="headline">Categories</h1>

  <section class="categories">
    
    <h2 class="category">
      <a href="https://htdvisser.github.io/hugo-base16-theme/categories/development">Development</a>
      <small>(2)</small>
    </h2>
    
    <h2 class="category">
      <a href="https://htdvisser.github.io/hugo-base16-theme/categories/golang">Golang</a>
      <small>(2)</small>
    </h2>
    
  </section>





  <h1 class="headline">Tags</h1>

  <section class="tags">
    
    <span class="tag">
      <a href="https://htdvisser.github.io/hugo-base16-theme/tags/development">development</a>
      <small>(2)</small>
    </span>
    
    <span class="tag">
      <a href="https://htdvisser.github.io/hugo-base16-theme/tags/go">go</a>
      <small>(2)</small>
    </span>
    
    <span class="tag">
      <a href="https://htdvisser.github.io/hugo-base16-theme/tags/golang">golang</a>
      <small>(2)</small>
    </span>
    
    <span class="tag">
      <a href="https://htdvisser.github.io/hugo-base16-theme/tags/hugo">hugo</a>
      <small>(1)</small>
    </span>
    
    <span class="tag">
      <a href="https://htdvisser.github.io/hugo-base16-theme/tags/templates">templates</a>
      <small>(1)</small>
    </span>
    
    <span class="tag">
      <a href="https://htdvisser.github.io/hugo-base16-theme/tags/themes">themes</a>
      <small>(1)</small>
    </span>
    
  </section>



</main>



</div>

<footer>
  <div class="container">
    <span class="copyright">&copy; 2014  Hugo Base16 Theme - <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></span>
  </div>
</footer>

</body>
</html>