-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy paththeme-skeleton.html
113 lines (97 loc) · 4.11 KB
/
theme-skeleton.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{Title}</title>
{block:Description}
<meta name="description" content="{MetaDescription}">
{/block:Description}
<link rel="shortcut icon" href="{Favicon}">
<link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}">
<link rel="stylesheet" href="application.css" media="screen">
</head>
<body>
<header>
<hgroup>
<h1><a href="/">{Title}</a></h1>
{block:Description}
<h2>{Description}</h2>
{/block:Description}
</hgroup>
</header>
<section class="posts">
{block:Posts}
{block:Regular}
<article class="regular post">
{block:Title}<h2 class="title">{Title}</h2>{/block:Title}
{Body}
<section class="post-meta">
<time datetime="{Year}-{MonthNumberWithZero}-{DayOfMonthWithZero}" class="permalink" pubdate ><a href="{Permalink}">{Month} {DayOfMonth}, {Year}</a></time>
</section>
</article>
{/block:Regular}
{block:Photo}
<article class="photo post">
<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}">
<section class="post-meta">
<div class="caption">{Caption}</div>
<time datetime="{Year}-{MonthNumberWithZero}-{DayOfMonthWithZero}" class="permalink" pubdate ><a href="{Permalink}">{Month} {DayOfMonth}, {Year}</a></time>
</section>
</article>
{/block:Photo}
{block:Quote}
<article class="quote {length} post">
<div class="quoteactual"><q>{Quote}</q></div>
<section class="post-meta">
<div class="source"><span class="emdash">—</span>{Source}</div>
<time datetime="{Year}-{MonthNumberWithZero}-{DayOfMonthWithZero}" class="permalink" pubdate ><a href="{Permalink}">{Month} {DayOfMonth}, {Year}</a></time>
</section>
</article>
{/block:Quote}
{block:Link}
<article class="link post">
<p><a href="{URL}" class="link" {Target}>{Name}</a></p>
<div class="description">{Description}</div>
<time datetime="{Year}-{MonthNumberWithZero}-{DayOfMonthWithZero}" class="permalink" pubdate ><a href="{Permalink}">{Month} {DayOfMonth}, {Year}</a></time>
</article>
{/block:Link}
{block:Conversation}
<article class="conversation post">
<ul>
{block:Lines}
<li class="{Alt}">
{block:Label}<span class="label">{Label}</span>{/block:Label}
{Line}
</li>
{/block:Lines}
</ul>
<time datetime="{Year}-{MonthNumberWithZero}-{DayOfMonthWithZero}" class="permalink" pubdate ><a href="{Permalink}">{Month} {DayOfMonth}, {Year}</a></time>
</article>
{/block:Conversation}
{block:Audio}
<article class="audio post">
{AudioPlayerWhite}
<div class="caption">{block:Caption}{Caption}{/block:Caption}{block:ExternalAudio} [<a href="{ExternalAudioURL}">Download</a>]{/block:ExternalAudio}</div>
<time datetime="{Year}-{MonthNumberWithZero}-{DayOfMonthWithZero}" class="permalink" pubdate ><a href="{Permalink}">{Month} {DayOfMonth}, {Year}</a></time>
</article>
{/block:Audio}
{block:Video}
<article class="video post">
{Video-500}
<section class="post-meta">
<div class="caption">{Caption}</div>
<time datetime="{Year}-{MonthNumberWithZero}-{DayOfMonthWithZero}" class="permalink" pubdate ><a href="{Permalink}">{Month} {DayOfMonth}, {Year}</a></time>
</section>
</article>
{/block:Video}
{/block:Posts}
{block:Pagination}
<div id="pagination">
<div id="older-link">{block:NextPage}<a href="{NextPage}">← Older</a>{/block:NextPage}</div>
<div id="page-count">{CurrentPage} <span>of</span> {TotalPages}</div>
<div id="newer-link">{block:PreviousPage}<a href="{PreviousPage}">Newer →</a>{/block:PreviousPage}</div>
</div>
{/block:Pagination}
</section>
</body>
</html>