Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Searchbar and Index, Fancy Codeblock, Latex Support #44

Merged
merged 25 commits into from
Nov 6, 2024
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
0963779
Update README.md
micahkepe Oct 19, 2024
e77180a
Delete .github/workflows/docs.yml
micahkepe Oct 19, 2024
7032deb
old shortcodes, update info, first pass of code SCSS and clipboarding
micahkepe Oct 19, 2024
2f6eff7
Get nodes and code clipboards working
micahkepe Oct 19, 2024
3bdbc12
gif shortcode improvement with width
micahkepe Oct 19, 2024
75a5bec
Add dim. options for newtab shortcode
micahkepe Oct 20, 2024
a757890
Enable clipboard code blocks by default
micahkepe Oct 20, 2024
ef836e7
Update README
micahkepe Oct 20, 2024
6bf214d
inline code highlighting, comments
micahkepe Oct 21, 2024
e7b3f3b
Make LaTex a config option partial
micahkepe Oct 22, 2024
28739cc
Update README
micahkepe Oct 22, 2024
53934ee
Initial working search bar support
micahkepe Oct 23, 2024
7d90146
Better searchbar styling
micahkepe Oct 24, 2024
cbe3283
Refine search styling, search index file path resolution
micahkepe Oct 25, 2024
db60631
Update demo pages, update README
micahkepe Oct 25, 2024
a625166
fix: graceful search index path resolution, downsize screenshot
micahkepe Oct 25, 2024
f44b607
Youtube and audio shortcodes, search on /, blockquote styling
micahkepe Oct 25, 2024
8a36449
Add custom 404 page
micahkepe Oct 25, 2024
6cc4e42
Blockquote bg, toggle theme JS code for later
micahkepe Oct 26, 2024
63d3c44
Override index title for pages
micahkepe Oct 29, 2024
384452e
Update theme.toml
micahkepe Oct 30, 2024
ac43cd4
Update blockquote styling
micahkepe Nov 2, 2024
28710b3
Revert to original author's README, config, and theme files with
micahkepe Nov 5, 2024
8036c00
Add back deleted docs workflow
micahkepe Nov 5, 2024
448b1c1
Update README instruction for codeblocks
micahkepe Nov 6, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add custom 404 page
  • Loading branch information
micahkepe committed Oct 25, 2024
commit 8a36449a41c34ca41e935be829a68cbd6f453e51
13 changes: 13 additions & 0 deletions templates/404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{% extends "page.html" %}
{% block content %}
<main style="text-align: center;">
<h1>404 - NOT FOUND</h1>
<p>Page not found. Sorry about that.</p>
<p>Maybe try the <a href="{{ config.base_url | safe }}">homepage</a>?</p>

<p>
For troubleshooting, refer to the <a href="https://www.getzola.org/documentation/getting-started/overview/"
target="_blank" rel="noopener">Zola documentation</a>.
</p>
</main>
{% endblock content %}