generated from wiosdesigns/roadrunner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
template.html
192 lines (173 loc) · 4.42 KB
/
template.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-157349003-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-157349003-1');
</script>
<title>{{title}} - WIOS Designs</title>
<meta property="og:title" content="{{title}} - WIOS Designs" />
<meta name="twitter:title" content="{{title}} - WIOS Designs" />
<meta name="description" content="{{description}}">
<meta property="og:description" content="{{description}}">
<meta name="twitter:description" content="{{description}}">
<meta property="og:url" content="https://wiosdesigns.xyz/{{filename}}" />
<meta property="og:image" content="{{image}}">
<meta property="twitter:image" content="{{image}}">
<meta name="twitter:image:alt" content="Background Image">
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary"></meta>
<meta name="keywords" content="{{keywords}}"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<meta name="theme-color" content="#161e24">
<link rel="shortcut icon" href="/assets/favicon.png"/>
<style>
* {box-sizing: border-box;}
/* Color Scheme */
:root{
--darker: #161e24;
--dark: #2e4b57;
--theme: #3ba0b6;
--accent: #3d768c;
--light: #7fb9c8;
--lighter: #ffffff;
}
/* Fonts */
@font-face {
font-family: main;
font-display: swap;
src: url(/assets/hr.ttf);
}
body {
font-family: main;
font-size: 1rem;
padding: 0;
margin: 0;
background: var(--darker);
color: var(--light);
text-align: center;
}
header{
display: grid;
grid-template-columns: auto 1fr;
background: var(--darker);
justify-items: right;
max-height: 4.2rem;
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 1rem;
align-items: center;
z-index: 20;
box-shadow: 2px 0px 10px rgba(0,0,0,0.3);
}
.header-icon{height: 2rem; width: auto;}
.header-home-link{text-decoration:none;padding:0;display:inline-block;}
header nav{
text-align: right;
}
header a{
color: var(--theme);
text-decoration: none;
padding: 0;
margin: 0;
vertical-align: 0.3rem;
}
main{
margin: 0;
margin-top: 4.2rem;
width: 100%;
display: inline-block;
max-width: 20cm;
padding: 0;
padding-bottom: 5rem;
background: var(--darker);
border-radius: 1rem;
text-align: left;
font-size: 1.25rem;
}
footer{
background: var(--dark);
color: var(--lighter);
padding: 1rem;
text-align: center;
}
footer>a{
color: inherit;
}
h1,h2,h3,h4,h5,h6{
font-weight: 200;
color: var(--lighter);
}
main>p>img{
width: 100%;
z-index: 0;
}
ul{list-style:none;padding:0;}
ul>li::before{
content: "•";
color: var(--accent);
margin-right: 1rem;
}
ol{list-style:none;padding:0;counter-reset:ul-counter;}
ol>li::before{
content: counter(ul-counter);
counter-increment: ul-counter;
color: var(--accent);
margin-right: 1rem;
}
blockquote{
padding: 0;
margin: 0;
}
blockquote>p{
background: var(--darker);
border-left: 0.2rem solid var(--accent);
padding: 0.5rem 1rem;
}
main a{
color: var(--accent);
}
main>*{
padding: 0 1rem;
}
p.img{
padding: 0;
color: var(--lighter);
text-align: center;
}
a.btn{
text-decoration: none;
display: inline-block;
padding: 0.3rem 1rem 0.2rem 1rem;
border-radius: 10rem;
background: var(--theme);
color: var(--darker);
font-size: 80%;
}
</style>
</head>
<body>
<header>
<a href="/" class="header-home-link">
<img class="header-icon" src="/assets/wiostext.png">
</a>
<nav>
<a href="mailto:[email protected]">[email protected]</a>
</nav>
</header>
<main>
{{main_html|safe}}
</main>
<footer>
© 2020 WIOS Designs, a unit of
<a href="https://xpify.wiosdesigns.xyz/">Xpify Services Pvt. Ltd.</a>
</footer>
</body>
</html>