-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.txt
122 lines (100 loc) · 2.06 KB
/
default.txt
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
114
115
116
117
118
119
120
121
122
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=320,user-scalable:yes" />
<meta name="powered-by" content="Feedvolley" />
<title>{Title}</title>
<link rel="stylesheet" href="/assets/css/reset.css" type="text/css" media="all" />
<style type="text/css" media="screen, projection">
body {
background: #f9fafa;
color: #1f1f1f;
font: 12px Verdana, Helvetica, Arial, sans-serif;
}
a {
text-decoration: none;
border: none;
outline: none;
}
#header, #posts {
padding: 8px;
}
#header {
background: #55c5e9;
}
#title {
float: left;
}
#title h1 a {
font: bold 34px Helvetica, Arial, sans-serif;
color: #f6fcfe;
}
#title h1 a:hover {
color: #ddf3fb;
}
#powered_by {
float: right;
line-height: 34px;
}
#powered_by a {
color: #ddf3fb;
}
.clearfix:after,
#header:after {
clear: both;
content: ".";
display: block;
visibility: hidden;
height: 0;
}
.post {
margin-bottom: 15px;
background: #fff;
padding: 5px;
}
.post h2 a {
font-size: 18px;
font-weight: bold;
color: #a3d869;
}
.post h2 a:hover, .post p a:hover {
color: #0d0d0d;
}
.post p {
margin-top: 7px;
line-height: 17px;
}
.post p a {
color: #ff5e3c;
}
.post strong, .post b { font-weight: bold; }
.post em, .post i { font-style: italic; }
</style>
</head>
<body>
<div id="wrap">
<div id="header">
<div id="title">
<h1><a href="">{Title}</a></h1>
</div>
<div id="powered_by">
<a href="#">Powered by Feedvolley ›</a>
</div>
</div>
<div id="posts">
{block:Posts}
{block:Text}
<div class="post">
{block:Title}
<h2><a href="{Permalink}">{Title}</a></h2>
{/block:Title}
<p>{Body}</p>
</div>
{/block:Text}
{/block:Posts}
</div>
</div>
</body>
</html>