This commit is contained in:
Elijah McMorris 2025-05-06 13:30:28 -07:00
parent d6006a0227
commit 70671e5a43
Signed by: NexVeridian
SSH key fingerprint: SHA256:bsA1SKZxuEcEVHAy3gY1HUeM5ykRJl0U0kQHQn0hMg8
17 changed files with 519 additions and 14 deletions

19
templates/archive.html Normal file
View file

@ -0,0 +1,19 @@
{% extends "index.html" %}
{%- block title -%}
{{ title_macros::title(page_title=page.title, main_title=config.title) }}
{%- endblock -%}
{% block extra_head %}
<link rel="stylesheet" href="{{ get_url(path="css/custom.css") }}">
{% endblock extra_head %}
{% block content %}
<div class="post">
<h1 class="post-title">{{ page.title }}</h1>
{% set blog_section = get_section(path="blog/_index.md") %}
{{ post_macros::list_posts(pages=blog_section.pages) }}
</div>
{% endblock content %}

194
templates/index.html Normal file
View file

@ -0,0 +1,194 @@
{% import "macros/date.html" as date_macros -%}
{% import "macros/head.html" as head_macros -%}
{% import "macros/menu.html" as menu_macros -%}
{% import "macros/post.html" as post_macros -%}
{% import "macros/title.html" as title_macros -%}
<!DOCTYPE html>
<html lang="{%- if config.default_language -%}{{ config.default_language }}{%- else -%}en{%- endif -%}">
<head>
<title>{%- block title %}{{ config.title }}{% endblock title -%}</title>
{{ head_macros::head(config=config) }}
{%- block open_graph %}{{ head_macros::open_graph(config=config) }}{% endblock open_graph -%}
{%- if config.generate_feeds %}
{%- for feed in config.feed_filenames %}
{%- if feed is containing('atom') %}
<link rel="alternate" type="application/atom+xml" title="{{ config.title }} Atom Feed" href="{{ get_url(path=feed, trailing_slash=false, lang=lang) | safe }}" />
{%- endif %}
{%- if feed is containing('rss') %}
<link rel="alternate" type="application/rss+xml" title="{{ config.title }} RSS Feed" href="{{ get_url(path=feed, trailing_slash=false, lang=lang) | safe }}" />
{%- endif %}
{%- endfor %}
{%- endif -%}
{%- if config.extra.favicon %}
<link rel="shortcut icon" type="{{ config.extra.favicon_mimetype | default(value="image/x-icon") | safe }}" href="{{ config.extra.favicon | safe }}">
{% endif -%}
{%- block extra_head %}
<link rel="stylesheet" href="{{ get_url(path="css/custom.css") }}">
{% endblock extra_head -%}
</head>
<body class="">
<div class="container">
{% block header %}
<header class="header">
<div class="header__inner">
<div class="header__logo">
{%- if config.extra.logo_home_link %}
{% set logo_link = config.extra.logo_home_link %}
{% else %}
{% set logo_link = config.base_url %}
{% endif -%}
<a href="{{ logo_link | safe }}" style="text-decoration: none;">
<div class="logo">
{% block logo_content %}
{%- if config.extra.logo_text %}
{{ config.extra.logo_text }}
{% else %}
Terminimal theme
{% endif -%}
{% endblock logo_content %}
</div>
</a>
</div>
</div>
{% block header_menu %}
{{ menu_macros::menu(config=config, current_path=current_path) }}
{% endblock header_menu %}
</header>
{% endblock header %}
<div class="content">
{% block content %}
<div class="posts">
<h2 class="section-title">Open Source Contributions and Projects</h2>
<div class="project-grid">
<a href="https://github.com/loco-rs/loco-openapi-Initializer" class="project-box-link">
<div class="project-box">
<h3 class="post-title">Loco OpenAPI</h3>
<p class="project-tags">Rust</p>
<p>Created an official extension for Loco.rs adding OpenAPI integration</p>
<p>Automatically generates the OpenAPI specification and documentation for the routes</p>
<p>Serves the OpenAPI documentation using either Swagger-ui, Redoc, or Scalar</p>
<span class="view-project">View Source Code →</span>
</div>
</a>
<a href="https://github.com/jupyterlab/jupyterlab/issues?q=state%3Aclosed%20is%3Apr%20author%3A@me%20is%3Amerged" class="project-box-link">
<div class="project-box">
<h3 class="post-title">JupyterLab Contributions</h3>
<p class="project-tags">TypeScript</p>
<p>[#16341] Added button to find/shut down kernels not attached to open notebooks</p>
<p>[#16265] Implemented checkbox to skip kernel restart dialog</p>
<p>[#16208] Fixed cell output area clearing in notebooks</p>
<span class="view-project">View PRs →</span>
</div>
</a>
<a href="https://github.com/loco-rs/loco/issues?q=state%3Aclosed%20is%3Apr%20author%3A@me%20is%3Amerged" class="project-box-link">
<div class="project-box">
<h3 class="post-title">Loco.rs Contributions</h3>
<p class="project-tags">Rust</p>
<p>[#1360] Added YAML response support for routes</p>
<p>[#1093] Enabled parallel test execution, reducing test time by 65-90%</p>
<p>[#1204] Made background worker tests parallel with different database names</p>
<P>+8 more PRs</P>
<span class="view-project">View PRs →</span>
</div>
</a>
<a href="https://nexveridian.com/ARK" class="project-box-link">
<div class="project-box">
<h3 class="post-title">ARK Invest ETF Tracker</h3>
<p class="project-tags">Next.js, TypeScript</p>
<p>Retrieves the data from an API and visualizes it in an interactive chart, showing the holding over time for the ETFs</p>
<span class="view-project">View Project →</span>
</div>
</a>
<a href="https://api.nexveridian.com/" class="project-box-link">
<div class="project-box">
<h3 class="post-title">Ark Invest API Rust</h3>
<p class="project-tags">Rust, Polars, Axum, Redoc</p>
<p>A REST API providing JSON data on the holdings of 25 ETFs, and automatically updates daily</p>
<span class="view-project">View Source Code →</span>
</div>
</a>
<a href="https://github.com/NexVeridian/wikidata-to-surrealdb" class="project-box-link">
<div class="project-box">
<h3 class="post-title">Wikidata To SurrealDB</h3>
<p class="project-tags">Rust</p>
<p>A tool for converting Wikidata BZ2 or JSON data dumps, to a SurrealDB database</p>
<span class="view-project">View Source Code →</span>
</div>
</a>
<a href="https://s.nexveridian.com" class="project-box-link">
<div class="project-box">
<h3 class="post-title">Next Url Shortener</h3>
<p class="project-tags">Next.js, TypeScript</p>
<p>A URL shortener using Next.js server actions, Postgres or SurrealDB, Shadcn/ui, and Tailwind</p>
<span class="view-project">View Project →</span>
</div>
</a>
</div>
<h2 class="section-title">Recent Blog Posts</h2>
<div class="recent-posts">
{% set blog_section = get_section(path="blog/_index.md") %}
{% for page in blog_section.pages | slice(end=2) %}
<div class="post on-list">
{{ post_macros::header(page=page) }}
{{ post_macros::content(page=page, summary=true, show_only_description=page.extra.show_only_description | default(value=true)) }}
</div>
{% endfor %}
<a href="{{ get_url(path="blog") }}" class="view-all">View All Posts →</a>
</div>
</div>
{% endblock content %}
</div>
{% block footer %}
<footer class="footer">
<div class="footer__inner">
{%- if config.extra.copyright_html %}
<div class="copyright copyright--user">{{ config.extra.copyright_html | safe }}</div>
{% else %}
<div class="copyright">
{%- if config.extra.author %}
<span>© {{ date_macros::now_year() }} {{ config.extra.author }}</span>
{% else %}
<span>© {{ date_macros::now_year() }} Powered by <a href="https://www.getzola.org/">Zola</a></span>
{% endif -%}
<span class="copyright-theme">
<span class="copyright-theme-sep">:: </span>
<a href="https://github.com/NexVeridian/NexVeridian-web">Source Code</a>&nbsp;
</span>
<span class="copyright-theme">
<span class="copyright-theme-sep">:: </span>
Theme: <a href="https://github.com/pawroman/zola-theme-terminimal/">Terminimal</a> by pawroman
</span>
</div>
{% endif -%}
</div>
</footer>
{% endblock footer %}
</div>
{%- block extra_body %}
{% endblock extra_body -%}
</body>
</html>

45
templates/section.html Normal file
View file

@ -0,0 +1,45 @@
{% extends "index.html" %}
{% block extra_head %}
<link rel="stylesheet" href="{{ get_url(path="css/custom.css") }}">
{% endblock extra_head %}
{% block content %}
<div class="posts">
<h1 class="post-title">{{ section.title }}</h1>
{%- if paginator %}
{%- set show_pages = paginator.pages -%}
{% else %}
{%- set show_pages = section.pages -%}
{% endif -%}
{%- for page in show_pages %}
<div class="post on-list">
{{ post_macros::header(page=page) }}
{{ post_macros::content(page=page, summary=true, show_only_description=page.extra.show_only_description | default(value=false)) }}
</div>
{% endfor -%}
<div class="pagination">
<div class="pagination__buttons">
{%- if paginator.previous %}
<span class="button previous">
<a href="{{ paginator.previous | safe }}">
<span class="button__icon"></span>&nbsp;
<span class="button__text">Newer posts</span>
</a>
</span>
{% endif -%}
{%- if paginator.next %}
<span class="button next">
<a href="{{ paginator.next | safe }}">
<span class="button__text">Older posts</span>&nbsp;
<span class="button__icon"></span>
</a>
</span>
{% endif -%}
</div>
</div>
</div>
{% endblock content %}

25
templates/tags/list.html Normal file
View file

@ -0,0 +1,25 @@
{% extends "index.html" %}
{%- block title -%}
{{ title_macros::title(page_title="Tags", main_title=config.title) }}
{%- endblock -%}
{% block extra_head %}
<link rel="stylesheet" href="{{ get_url(path="css/custom.css") }}">
{% endblock extra_head %}
{% block content %}
<div class="post">
<h1 class="post-title">all tags</h1>
<ul>
{% for term in terms %}
<li class="tag-list">
<a href="{{ term.permalink | safe }}">
{{ term.name }} ({{ term.pages | length }} post{{ term.pages | length | pluralize }})
</a>
</li>
{% endfor %}
</ul>
</div>
{% endblock content %}

View file

@ -0,0 +1,25 @@
{% extends "index.html" %}
{%- block title -%}
{% set title = "Tag: " ~ term.name %}
{{ title_macros::title(page_title=title, main_title=config.title) }}
{%- endblock -%}
{% block extra_head %}
<link rel="stylesheet" href="{{ get_url(path="css/custom.css") }}">
{% endblock extra_head %}
{% block content %}
<div class="post">
<h1 class="post-title">
tag: #{{ term.name }}
({{ term.pages | length }} post{{ term.pages | length | pluralize }})
</h1>
<a href="{{ config.base_url | safe }}/tags/">
Show all tags
</a>
{{ post_macros::list_posts(pages=term.pages) }}
</div>
{% endblock content %}