-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.go
114 lines (92 loc) · 1.6 KB
/
styles.go
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
package main
import "log"
type Styles struct {
StylePath string
Files []string
}
const STYLES_TEMPLATE = `
{{ define "styles" }}
<style>
html {
font-family: sans-serif;
}
#header {
text-align: center;
padding: 20px, 20px, 10px, 20px;
}
a #header:hover
{
color: white;
text-shadow: 0 0 10px #000;
-moz-text-shadow: 0 0 2px #000;
-webkit-text-shadow: 0 0 2px #000;
}
#navbar {
text-align: center;
display: block;
}
.navbar_item {
font-size: 20px;
padding: 10px;
}
.navbar_item:hover {
text-decoration: underline;
}
#post_preview {
text-decoration: none;
text-align: center;
padding: 20px;
margin-left: auto;
margin-right: auto;
margin-top: 10px;
margin-bottom: 10px;
border-style: solid;
display: block;
border-radius: 10px;
width: 50%;
}
#post_preview .post_title {
font-size: 24px;
}
#post_preview .post_date {
text-decoration: italic;
}
a {
text-decoration: none;
color: black;
}
#post_preview:hover {
background-color: #ffff99;
}
#post {
margin-left: auto;
margin-right: auto;
width: 60%;
font-family: sans-serif;
}
#post_title {
font-size: 24px;
text-align: center;
}
#post_date {
text-align: center;
}
#post_body {
text-align: left;
}
#post_body a {
text-decoration: underline;
}
</style>
{{ end }}
`
func buildStyles(stylesPath string) *Styles {
styles, err := getDirContents(stylesPath)
if err != nil {
log.Panic("Error building styles : ", err)
}
return &Styles{
StylePath: "./styles/",
Files: styles,
}
}