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

index.html « layouts - github.com/AlexFinn/simple-a.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aed54e548d933b4b937f0963685230d5ecb9c96b (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
<!DOCTYPE html>
<html lang="en">
  <head>
    {{ template "theme/chrome/meta.html" . }}  
    {{ template "theme/chrome/includes.html" . }}
    <link rel="shortcut icon" href="/images/alexfinn.ico"> 
    <link rel="apple-touch-icon" href="">
    <link rel="canonical" href="{{ .Permalink }}">
    <!-- atom & rss feed -->
    <link href="/rss.xml" type="application/atom+xml" rel="alternate" title="{{ .Site.Title }}">    
  </head>

  <body>    
    {{ template "theme/chrome/menu.html" }}

{{ $baseurl := .Site.BaseUrl }}

<div class="container">
  <div class="content">

  <div class="row-fluid">
    <div class="span12">
        <div class="posts">
            {{ range .Data.Pages }}        
                <article class="post">
                
                    <header class="post-header">
                        <h1><a href="{{.RelPermalink }}">{{ .Title }}</a></h1>
                        <div class="post-time">{{ .Date.Format "January 2 2006" }}, {{ .FuzzyWordCount }} Words</div>
                    </header>

                    <div class="post-after">
                        <div class="tags">
                            {{ range .Params.tags }}
                                <a href="{{ $baseurl }}/tags/{{ . | urlize }}">{{ . }}</a>              
                            {{ end }}
                        </div>
                    </div>
                </article>
            {{ end }}
        </div>   
    </div>  
  </div>

{{ template "theme/chrome/footer.html" }}