Skip to content

Commit f9b66ff

Browse files
author
GitHub Actions
committed
Deploy micahkepe/radion to micahkepe/radion:gh-pages
0 parents  commit f9b66ff

59 files changed

Lines changed: 11037 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.nojekyll

Whitespace-only changes.

404.html

Lines changed: 206 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,206 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
5+
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
6+
7+
<!-- Enable responsiveness on mobile devices -->
8+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
9+
10+
11+
12+
<meta name="description" content="A elegant light and dark theme for Zola" />
13+
<meta property="og:description" content="A elegant light and dark theme for Zola" />
14+
<meta property="twitter:description" content="A elegant light and dark theme for Zola" />
15+
16+
17+
18+
<!-- Title -->
19+
20+
21+
22+
<title>
23+
24+
radion theme
25+
26+
</title>
27+
28+
<!-- Additional Facebook Meta Tags -->
29+
<meta property="og:site_name" content="radion theme" />
30+
<meta
31+
property="og:url"
32+
content="https:&#x2F;&#x2F;micahkepe.com&#x2F;radion"
33+
/>
34+
<meta
35+
property="og:type"
36+
content="website"
37+
/>
38+
<meta property="og:title" content="radion theme" />
39+
40+
<!-- Additional Twitter Meta Tags -->
41+
<meta name="twitter:card" content="summary_large_image" />
42+
<meta
43+
property="twitter:url"
44+
content="https:&#x2F;&#x2F;micahkepe.com&#x2F;radion"
45+
/>
46+
<meta name="twitter:title" content="radion theme" />
47+
48+
<!-- Additional Fediverse Tags -->
49+
50+
<meta name="fediverse:creator" content="@username@my.instance.example.com" />
51+
52+
<link rel="me" href="https:&#x2F;&#x2F;my.instance.example.com&#x2F;@username" />
53+
54+
55+
<!-- Cover images -->
56+
57+
58+
59+
<meta
60+
property="og:image"
61+
content="https:&#x2F;&#x2F;micahkepe.com&#x2F;radion&#x2F;icons&#x2F;favicon&#x2F;web-app-manifest-512x512.png"
62+
/>
63+
64+
<meta
65+
name="twitter:image"
66+
content="https:&#x2F;&#x2F;micahkepe.com&#x2F;radion&#x2F;icons&#x2F;favicon&#x2F;web-app-manifest-512x512.png"
67+
/>
68+
69+
<!-- Favicons -->
70+
71+
<link
72+
rel="icon"
73+
type="image/png"
74+
href="https:&#x2F;&#x2F;micahkepe.com&#x2F;radion/icons/favicon/favicon-96x96.png"
75+
sizes="96x96"
76+
/>
77+
<link
78+
rel="icon"
79+
type="image/svg+xml"
80+
href="https:&#x2F;&#x2F;micahkepe.com&#x2F;radion/icons/favicon/favicon.svg"
81+
/>
82+
<link
83+
rel="shortcut icon"
84+
href="https:&#x2F;&#x2F;micahkepe.com&#x2F;radion/icons/favicon/favicon.ico"
85+
/>
86+
<link
87+
rel="apple-touch-icon"
88+
sizes="180x180"
89+
href="https:&#x2F;&#x2F;micahkepe.com&#x2F;radion/icons/favicon/apple-touch-icon.png"
90+
/>
91+
<meta name="apple-mobile-web-app-title" content="radion theme" />
92+
<link
93+
rel="manifest"
94+
href="https:&#x2F;&#x2F;micahkepe.com&#x2F;radion/icons/favicon/site.webmanifest"
95+
/>
96+
97+
98+
<!-- RSS Feed -->
99+
100+
<link
101+
rel="alternate"
102+
type="application/atom+xml"
103+
title="RSS"
104+
href="https://micahkepe.com/radion/atom.xml"
105+
/>
106+
107+
108+
<!-- Load Styles -->
109+
110+
<link
111+
rel="stylesheet"
112+
href="https://micahkepe.com/radion/site.css"
113+
/>
114+
115+
116+
<!-- Syntax highlighting theming -->
117+
118+
<link
119+
rel="stylesheet" type="text/css"
120+
href="https:&#x2F;&#x2F;micahkepe.com&#x2F;radion/syntax/syntax-theme-dark.css"
121+
/>
122+
<link
123+
rel="stylesheet" type="text/css"
124+
href="https:&#x2F;&#x2F;micahkepe.com&#x2F;radion/syntax/syntax-theme-light.css"
125+
/>
126+
127+
128+
<!-- Load Fonts -->
129+
130+
131+
132+
133+
134+
135+
136+
137+
138+
<!-- Google Fonts -->
139+
<link rel="preconnect" href="https://fonts.googleapis.com">
140+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
141+
142+
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400&display=swap" rel="stylesheet">
143+
144+
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@700&display=swap" rel="stylesheet">
145+
146+
147+
148+
149+
<!-- Forcing Font -->
150+
<style>
151+
body {
152+
font-family:
153+
"JetBrains Mono", Menlo, Monaco, Lucida Console, Liberation Mono,
154+
DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New,
155+
monospace, serif !important;
156+
}
157+
</style>
158+
159+
160+
<!-- Pass Theme Preference as Data Attribute -->
161+
<script src="https://micahkepe.com/radion/js/init-theme.js"></script>
162+
163+
<!-- Reference return to click position script -->
164+
<script defer src="https://micahkepe.com/radion/js/reference-return.js"></script>
165+
166+
<!-- Additional scripts -->
167+
168+
169+
<script defer src="https://micahkepe.com/radion/js/codeblock.js"></script>
170+
171+
172+
<script src="https://micahkepe.com/radion/js/toggle-theme.js"></script>
173+
174+
175+
<!-- MathJax script for rendering LaTeX math equations -->
176+
<script src="https://micahkepe.com/radion/js/mathjax-config.js"></script>
177+
<script
178+
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js"
179+
async
180+
></script>
181+
182+
183+
184+
<script type="text/javascript" src="https://micahkepe.com/radion/elasticlunr.min.js"></script>
185+
<script type="text/javascript" src="https://micahkepe.com/radion/js/search.js"></script>
186+
187+
188+
189+
</head>
190+
191+
<!-- Body element (contents of the page) -->
192+
<body class="hack main container">
193+
194+
<main style="text-align: center;">
195+
<h1>404 - NOT FOUND</h1>
196+
<p>Page not found. Sorry about that.</p>
197+
<p>Maybe try the <a href="https://micahkepe.com/radion">homepage</a>?</p>
198+
199+
<p>
200+
For troubleshooting, refer to the <a href="https://www.getzola.org/documentation/getting-started/overview/"
201+
target="_blank" rel="noopener">Zola documentation</a>.
202+
</p>
203+
</main>
204+
205+
</body>
206+
</html>

atom.xml

Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
3+
<title>radion theme</title>
4+
<subtitle>A elegant light and dark theme for Zola</subtitle>
5+
<link rel="self" type="application/atom+xml" href="https://micahkepe.com/radion/atom.xml"/>
6+
<link rel="alternate" type="text/html" href="https://micahkepe.com/radion"/>
7+
<generator uri="https://www.getzola.org/">Zola</generator>
8+
<updated>2025-06-01T00:00:00+00:00</updated>
9+
<id>https://micahkepe.com/radion/atom.xml</id>
10+
<entry xml:lang="en">
11+
<title>Configuration Options</title>
12+
<published>2025-06-01T00:00:00+00:00</published>
13+
<updated>2025-06-01T00:00:00+00:00</updated>
14+
15+
<author>
16+
<name>
17+
Joe Schmoe
18+
</name>
19+
</author>
20+
21+
<author>
22+
<name>
23+
Jane Doe
24+
</name>
25+
</author>
26+
27+
<author>
28+
<name>
29+
John Smith
30+
</name>
31+
</author>
32+
33+
<link rel="alternate" type="text/html" href="https://micahkepe.com/radion/configuration/"/>
34+
<id>https://micahkepe.com/radion/configuration/</id>
35+
36+
<summary type="html">&lt;p&gt;This page describes the configuration options available for the &lt;code&gt;radion&lt;&#x2F;code&gt; theme.&lt;&#x2F;p&gt;</summary>
37+
38+
</entry>
39+
<entry xml:lang="en">
40+
<title>Markdown Formatting Test</title>
41+
<published>2024-12-13T00:00:00+00:00</published>
42+
<updated>2024-12-13T00:00:00+00:00</updated>
43+
44+
<author>
45+
<name>
46+
47+
Unknown
48+
49+
</name>
50+
</author>
51+
52+
<link rel="alternate" type="text/html" href="https://micahkepe.com/radion/markdown-demo/"/>
53+
<id>https://micahkepe.com/radion/markdown-demo/</id>
54+
55+
<summary type="html">&lt;p&gt;This page demonstrates various Markdown formatting features that can be used in
56+
the theme. The following sections showcase different elements, such as blockquotes,
57+
headings, lists, and more.&lt;&#x2F;p&gt;</summary>
58+
59+
</entry>
60+
<entry xml:lang="en">
61+
<title>Table of Contents Test</title>
62+
<published>2024-12-08T00:00:00+00:00</published>
63+
<updated>2024-12-08T00:00:00+00:00</updated>
64+
65+
<author>
66+
<name>
67+
68+
Unknown
69+
70+
</name>
71+
</author>
72+
73+
<link rel="alternate" type="text/html" href="https://micahkepe.com/radion/toc/"/>
74+
<id>https://micahkepe.com/radion/toc/</id>
75+
76+
<summary type="html">&lt;p&gt;This page demonstrates the table of contents feature with a mix of heading
77+
levels, inline links, and nested elements.&lt;&#x2F;p&gt;</summary>
78+
79+
</entry>
80+
<entry xml:lang="en">
81+
<title>Code Example</title>
82+
<published>2017-09-24T00:00:00+00:00</published>
83+
<updated>2017-09-24T00:00:00+00:00</updated>
84+
85+
<author>
86+
<name>
87+
88+
Unknown
89+
90+
</name>
91+
</author>
92+
93+
<link rel="alternate" type="text/html" href="https://micahkepe.com/radion/code-example/"/>
94+
<id>https://micahkepe.com/radion/code-example/</id>
95+
96+
<summary type="html">&lt;p&gt;Have code snippets complete with &lt;strong&gt;clipboard functionality&lt;&#x2F;strong&gt; and &lt;strong&gt;fancy
97+
language tags&lt;&#x2F;strong&gt;. No more boring code snippets in your pages. Oh yeah baby! Click
98+
on this article to see some code in action.&lt;&#x2F;p&gt;</summary>
99+
100+
</entry>
101+
<entry xml:lang="en">
102+
<title>LaTeX Example</title>
103+
<published>2017-09-24T00:00:00+00:00</published>
104+
<updated>2017-09-24T00:00:00+00:00</updated>
105+
106+
<author>
107+
<name>
108+
109+
Unknown
110+
111+
</name>
112+
</author>
113+
114+
<link rel="alternate" type="text/html" href="https://micahkepe.com/radion/latex-example/"/>
115+
<id>https://micahkepe.com/radion/latex-example/</id>
116+
117+
<summary type="html">&lt;p&gt;This theme allows you to use MathJax directly in your Markdown! Click on this
118+
article to see some fancy math in action. Little teaser:
119+
$$ x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} $$&lt;&#x2F;p&gt;</summary>
120+
121+
</entry>
122+
<entry xml:lang="en">
123+
<title>Shortcodes Demos</title>
124+
<published>2017-09-24T00:00:00+00:00</published>
125+
<updated>2017-09-24T00:00:00+00:00</updated>
126+
127+
<author>
128+
<name>
129+
130+
Unknown
131+
132+
</name>
133+
</author>
134+
135+
<link rel="alternate" type="text/html" href="https://micahkepe.com/radion/shortcodes-demo/"/>
136+
<id>https://micahkepe.com/radion/shortcodes-demo/</id>
137+
138+
<summary type="html">&lt;p&gt;&lt;strong&gt;radion&lt;&#x2F;strong&gt; comes with some handy shortcodes to make your life easier and
139+
your posts more exciting.&lt;&#x2F;p&gt;</summary>
140+
141+
</entry>
142+
</feed>

categories/configuration/atom.xml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
3+
<title>radion theme - configuration</title>
4+
<subtitle>A elegant light and dark theme for Zola</subtitle>
5+
<link rel="self" type="application/atom+xml" href="https://micahkepe.com/radion/categories/configuration/atom.xml"/>
6+
<link rel="alternate" type="text/html" href="https://micahkepe.com/radion"/>
7+
<generator uri="https://www.getzola.org/">Zola</generator>
8+
<updated>2025-06-01T00:00:00+00:00</updated>
9+
<id>https://micahkepe.com/radion/categories/configuration/atom.xml</id>
10+
<entry xml:lang="en">
11+
<title>Configuration Options</title>
12+
<published>2025-06-01T00:00:00+00:00</published>
13+
<updated>2025-06-01T00:00:00+00:00</updated>
14+
15+
<author>
16+
<name>
17+
Joe Schmoe
18+
</name>
19+
</author>
20+
21+
<author>
22+
<name>
23+
Jane Doe
24+
</name>
25+
</author>
26+
27+
<author>
28+
<name>
29+
John Smith
30+
</name>
31+
</author>
32+
33+
<link rel="alternate" type="text/html" href="https://micahkepe.com/radion/configuration/"/>
34+
<id>https://micahkepe.com/radion/configuration/</id>
35+
36+
<summary type="html">&lt;p&gt;This page describes the configuration options available for the &lt;code&gt;radion&lt;&#x2F;code&gt; theme.&lt;&#x2F;p&gt;</summary>
37+
38+
</entry>
39+
</feed>

0 commit comments

Comments
 (0)