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

github.com/schollz/onetwothree.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docs/post/goisforlovers/index.html')
-rw-r--r--docs/post/goisforlovers/index.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/post/goisforlovers/index.html b/docs/post/goisforlovers/index.html
index 2067646..b5448ab 100644
--- a/docs/post/goisforlovers/index.html
+++ b/docs/post/goisforlovers/index.html
@@ -24,21 +24,21 @@
<meta name="og:title" content="(Hu)go Template Primer">
<meta name="og:description" content="">
- <meta name="og:url" content="http://schollz.github.io/onetwothree/post/goisforlovers/">
+ <meta name="og:url" content="https://schollz.github.io/onetwothree/post/goisforlovers/">
<meta name="og:site_name" content="(Hu)go Template Primer">
<meta name="og:type" content="article">
<meta name="article:author" content="yakczar">
<meta name="article:tag" content="go golang templates themes development ">
- <link rel="stylesheet" type="text/css" href="http://schollz.github.io/onetwothree/css/style.css">
- <script src="http://schollz.github.io/onetwothree/js/caption.js"></script>
+ <link rel="stylesheet" type="text/css" href="https://schollz.github.io/onetwothree/css/style.css">
+ <script src="https://schollz.github.io/onetwothree/js/caption.js"></script>
</head>
<body>
<header style="color:#CCCCCC;">
- <a href="http://schollz.github.io/onetwothree/" style="color:#CCCCCC;"><strong>Posts</strong></a>&nbsp;&nbsp;·&nbsp;&nbsp;<a href="http://schollz.github.io/onetwothree/about/" style="color:#CCCCCC;"><strong>About Hugo</strong></a>
+ <a href="https://schollz.github.io/onetwothree/" style="color:#CCCCCC;"><strong>Posts</strong></a>&nbsp;&nbsp;·&nbsp;&nbsp;<a href="https://schollz.github.io/onetwothree/about/" style="color:#CCCCCC;"><strong>About Hugo</strong></a>
</header>
@@ -91,7 +91,7 @@ window.onload = ready;
</script>
<div class="content">
- <h1>(Hu)go Template Primer <aside><a href="http://schollz.github.io/onetwothree/tags/go/" class="w3-tag">/go</a>&nbsp;&nbsp;&nbsp;<a href="http://schollz.github.io/onetwothree/tags/golang/" class="w3-tag">/golang</a>&nbsp;&nbsp;&nbsp;<a href="http://schollz.github.io/onetwothree/tags/templates/" class="w3-tag">/templates</a>&nbsp;&nbsp;&nbsp;<a href="http://schollz.github.io/onetwothree/tags/themes/" class="w3-tag">/themes</a>&nbsp;&nbsp;&nbsp;<a href="http://schollz.github.io/onetwothree/tags/development/" class="w3-tag">/development</a>&nbsp;&nbsp;&nbsp;<a href="http://schollz.github.io/onetwothree/about" class="w3-tag">/about</a></aside></h1>
+ <h1>(Hu)go Template Primer <aside><a href="https://schollz.github.io/onetwothree/tags/go/" class="w3-tag">/go</a>&nbsp;&nbsp;&nbsp;<a href="https://schollz.github.io/onetwothree/tags/golang/" class="w3-tag">/golang</a>&nbsp;&nbsp;&nbsp;<a href="https://schollz.github.io/onetwothree/tags/templates/" class="w3-tag">/templates</a>&nbsp;&nbsp;&nbsp;<a href="https://schollz.github.io/onetwothree/tags/themes/" class="w3-tag">/themes</a>&nbsp;&nbsp;&nbsp;<a href="https://schollz.github.io/onetwothree/tags/development/" class="w3-tag">/development</a>&nbsp;&nbsp;&nbsp;<a href="https://schollz.github.io/onetwothree/about" class="w3-tag">/about</a></aside></h1>
<p>Hugo uses the excellent <a href="http://golang.org/&gt;">go</a> <a href="http://golang.org/pkg/html/template/&gt;">html/template</a> library for
@@ -150,7 +150,7 @@ functions.</p>
<p>Each go template has a struct (object) made available to it. In hugo each
template is passed either a page or a node struct depending on which type of
page you are rendering. More details are available on the
-<a href="http://schollz.github.io/onetwothree/layout/variables">variables</a> page.</p>
+<a href="https://schollz.github.io/onetwothree/layout/variables">variables</a> page.</p>
<p>A variable is accessed by referencing the variable name.</p>
@@ -167,7 +167,7 @@ page you are rendering. More details are available on the
<p>Go template ship with a few functions which provide basic functionality. The go
template system also provides a mechanism for applications to extend the
-available functions with their own. <a href="http://schollz.github.io/onetwothree/layout/functions">Hugo template
+available functions with their own. <a href="https://schollz.github.io/onetwothree/layout/functions">Hugo template
functions</a> provide some additional functionality we believe
are useful for building websites. Functions are called by using their name
followed by the required parameters separated by spaces. Template
@@ -355,7 +355,7 @@ you want to inside of your templates.</p>
<h2 id="using-content-page-parameters">Using Content (page) Parameters</h2>
<p>In each piece of content you can provide variables to be used by the
-templates. This happens in the <a href="http://schollz.github.io/onetwothree/content/front-matter">front matter</a>.</p>
+templates. This happens in the <a href="https://schollz.github.io/onetwothree/content/front-matter">front matter</a>.</p>
<p>An example of this is used in this documentation site. Most of the pages
benefit from having the table of contents provided. Sometimes the TOC just
@@ -442,8 +442,8 @@ so, such as in this example:</p>
</small></p>
<p>
- <a href="http://schollz.github.io/onetwothree/post/hugoisforlovers/">← Getting Started with Hugo</a>&nbsp;
- <a href="http://schollz.github.io/onetwothree/post/migrate-from-jekyll/" style="float:right;">Migrate to Hugo from Jekyll →</a>
+ <a href="https://schollz.github.io/onetwothree/post/hugoisforlovers/">← Getting Started with Hugo</a>&nbsp;
+ <a href="https://schollz.github.io/onetwothree/post/migrate-from-jekyll/" style="float:right;">Migrate to Hugo from Jekyll →</a>
</p>