-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.html
82 lines (79 loc) · 2.94 KB
/
theme.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
<html>
<head>
<title>{Title}</title>
<!--Blog Inspired by Rasmus Andersson
This guy is really talented! Check out his blog
rsms.me-->
<style type="text/css">
@font-face { font-family: "lainie"; src: url('http://static.tumblr.com/oetadgc/Uialyjfaa/laine.ttf'); }
*{font-family:inherit;}
body {
margin: 0 auto;
width: 1024px;
font:14px helvetica, sans-serif;
color: #666;
}
a { text-decoration: none; color: inherit;}
h1 {
font-family:lainie,serif;
}
posts {display:block;}
post {display:block;}
post img { max-width:100%;}
post a {color:#aaa;}
post a:hover {color: #111;}
post div.caption p,a{display:inline-block;}
post div.html_photoset iframe html{text-align:-webkit-center;}
footer {display:block; margin: 2em 0;}
footer a {color:#888;}
footer a:hover {color:#111;}
</style>
</head>
<body>
<header>
<h1><a href="http://kyle-copeland.github.io">{Title}</a></h1>
{block:Description}
<p id="description">{Description}</p>
{/block:Description}
</header>
<posts>
{block:Posts}{block:Text}
<post class="text">
{block:Title}
<h3><a href="{Permalink}">{Title}</a></h3>
{/block:Title}{body}
</post>
{/block:Text}{block:Photo}
<post class="photo">
{block:HighRes}
<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"/>
{/block:HighRes}
<div class="caption">
{block:Exif}
<p>{block:Camera}{Camera}{/block:Camera}
{block:Aperture}{Aperture}{/block:Aperture}
{block:Exposure}{Exposure}{/block:Exposure}
{block:FocalLength}{FocalLength}{/block:FocalLength}
</p>{/block:Exif}
{block:Caption}{Caption}{/block:Caption}
<a href="{Permalink}">{block:Date}{Month} {DayOfMonth}, {Year}{/block:Date}</a>
</div>
</post>
{/block:Photo}
{/block:Posts}
</posts>
<footer>
<center>
{block:NextPage}
<a href="{NextPage}">Older photos</a>
<span>-</span>
{/block:NextPage}
<a href="/archive">Archive</a>
{block:PreviousPage}
<span>-</span>
<a href="{PreviousPage}">Newer photos</a>
{/block:PreviousPage}
</center>
</footer>
</body>
</html>