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

single.html « _default « layouts - github.com/cfrome77/hugo-theme-sky.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ccf183125e6613a8d2547c5bc2763f8c91b49c06 (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
<!DOCTYPE html>
<html>

    <head>
        <title> {{ .Title }} &middot; {{ .Site.Title }} </title>

        {{ partial "head.html" . }}
    </head>

    <body>
        {{ partial "header.html" . }}
     <!-- Page Content -->
    <div class="container col-md-12 col-md-offset-2" id="blog-post">

      <div class="row centered-form center-block" >

        <!-- Post Content Column -->
        <div class="col-lg-8">

          <!-- Title -->
          <div class="post-title">
          <h1 class="mt-4"><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
		  </div>
		  
          <hr>

          <!-- Date/Time -->
          <div class="post-date">
          <h2>{{ .Date.Format "Jan 2, 2006 " }} - {{ .ReadingTime }} MINUTE READ</h2>
		  </div>
		  
          <hr>

          <!-- Post Content -->
          <div class="post-text">
          {{ .Content | markdownify }}
          </div>
          <hr />
          <div class="comments">
          {{ template "_internal/disqus.html" . }}
          </div>
          {{ partial "footer.html" . }}
    </div>
    </div>
    </body>
</html>