-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexamples.html
More file actions
143 lines (126 loc) · 6.55 KB
/
examples.html
File metadata and controls
143 lines (126 loc) · 6.55 KB
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
<!doctype html>
<html>
<head>
<meta charset=utf-8>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/style/main.css">
<link rel="icon" href="./assets/images/favicon.png" type="image/png">
<title>Examples & Themes</title>
<link rel="shortcut icon" href="assets/images/favicon.png" />
<meta name="author" content="Rodrick 'RodFireProductions'" />
<!-- url -->
<link rel="canonical" href="https://deadlogs.deadinsideartist.art/">
<meta property="og:url" content="https://deadlogs.deadinsideartist.art/">
<meta name="twitter:url" content="https://deadlogs.deadinsideartist.art/">
<!-- description -->
<meta name="description" content="A tool for making static blogs and sites.">
<meta property="og:description" content="A tool for making static blogs and sites.">
<meta name="twitter:description" content="A tool for making static blogs and sites.">
<!-- image -->
<meta property="og:image" content="assets/images/press1.png">
<meta name="twitter:image" content="assets/images/press1.png">
<!-- misc -->
<meta name="twitter:site" content="@rodfire8181">
<meta name="twitter:creator" content="@rodfire8181">
<meta property="twitter:card" content="summary_large_image">
<meta property="og:type" content="website">
<style>
.card {
display: grid;
grid-auto-flow: row;
padding: 10px;
border: double var(--back-color);
}
.card:hover { border: double var(--accent-color); }
.gridz {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
@media only screen and (max-width: 625px) {
.gridz { grid-template-columns: 1fr 1fr; }
}
}
@media only screen and (max-width: 400px) {
.gridz { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<div id="container">
<header>
<nav id="nav"></nav>
<h1>Examples & Themes</h1>
<div id="fonttoggle"></div>
<hr>
</header>
<main>
<!------------------------------------------------>
<!-- This is where you place your content! -->
<!-- This site no longer uses DeadLogs.
<section id="examples">
<h2>Example(s)</h2>
<div class="button buttonBig">
<a title="The webmaster's blog." target="_blank" href="https://blog.shroom.ink"><img src="https://blog.shroom.ink/assets/images/A Demigods Rambling.gif"></a>
</div>
</section>
-->
<section id="themes">
<h2>Default Theme Demos</h2>
<p class="center">
All background images come from
<a href="https://www.toptal.com/designers/subtlepatterns/" target="_blank">Toptal's Subtle Patterns</a>.
</p>
<div class="gridz">
<a target="_blank" class="center card" href="themes/wheat/">
<img src="assets/images/themes/wheat.webp" alt="Wheat Theme" class="centered" style="width:100%;height:auto;">
<p>Wheat Live Demo</p>
</a>
<a class="center card" href="themes/trees/">
<img src="assets/images/themes/trees.webp" alt="Trees Theme" class="centered" style="width:100%;height:auto;">
<p>Trees Live Demo</p>
</a>
<a class="center card" href="themes/bananas/">
<img src="assets/images/themes/bananas.webp" alt="Bananas Theme" class="centered" style="width:100%;height:auto;">
<p>Bananas Live Demo</p>
</a>
<a class="center card" href="themes/blacksun/">
<img src="assets/images/themes/blacksun.webp" alt="Black Sun Theme" class="centered" style="width:100%;height:auto;">
<p>Black Sun Live Demo</p>
</a>
<a class="center card" href="themes/whitesun/">
<img src="assets/images/themes/whitesun.webp" alt="White Sun Theme" class="centered" style="width:100%;height:auto;">
<p>White Sun Live Demo</p>
</a>
<a class="center card" href="themes/skwiggle/">
<img src="assets/images/themes/skwiggle.webp" alt="Skwiggle Theme" class="centered" style="width:100%;height:auto;">
<p>Skwiggle Live Demo</p>
</a>
<a class="center card" href="themes/stars/">
<img src="assets/images/themes/stars.webp" alt="Stars Theme" class="centered" style="width:100%;height:auto;">
<p>Stars Live Demo</p>
</a>
<a class="center card" href="themes/stardustdark/">
<img src="assets/images/themes/stardustdark.webp" alt="Stardust Dark Theme" class="centered" style="width:100%;height:auto;">
<p>Stardust Dark Live Demo</p>
</a>
<a class="center card" href="themes/stardustlight/">
<img src="assets/images/themes/stardustlight.webp" alt="Stardust Light Theme" class="centered" style="width:100%;height:auto;">
<p>Stardust Light Live Demo</p>
</a>
<a class="center card" href="themes/worms/">
<img src="assets/images/themes/worms.webp" alt="Theme" class="centered" style="width:100%;height:auto;">
<p>Worms Live Demo</p>
</a>
</section>
</div>
</main>
<hr id="seperator">
<footer id="footer"></footer>
</div>
<!-- Let's link our javascript-->
<script src="./deadlogs.js" charset="utf-8"></script>
<script src="./scripts/posts.js" charset="utf-8"></script>
<script src="./scripts/fonts.js" charset="utf-8"></script>
<script src="./scripts/console.js" charset="utf-8"></script>
</body>
</html>