nexveridian-web/templates/index.html
NexVeridian f6e2a3fda8
All checks were successful
docker / build (push) Successful in 1m43s
feat: github -> git.nexv.dev
2025-08-25 15:04:21 -07:00

199 lines
9.6 KiB
HTML

{% 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%3Anexveridian%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=is%3Apr%20author%3Anexveridian%20(is%3Amerged%20OR%20is%3Aopen%20)" 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>+14 more PRs</P>
<span class="view-project">View PRs →</span>
</div>
</a>
<a href="https://ark.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://github.com/NixOS/nixpkgs/pulls?q=is%3Apr+author%3ANexVeridian+" class="project-box-link">
<div class="project-box">
<h3 class="post-title">Nix Packages Contributions</h3>
<p class="project-tags">Nix</p>
<p>Added various package updates and fixes to Nix Packages</p>
<span class="view-project">View PRs →</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=10) %}
<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://git.nexveridian.com/NexVeridian/nexveridian-web">Source Code</a>&nbsp;
</span>
<span class="copyright-theme">
<span class="copyright-theme-sep">:: </span>
Dual Licensed: <a href="https://git.nexveridian.com/NexVeridian/nexveridian-web/src/branch/main/LICENSE-MIT">LICENSE-MIT</a> or <a href="https://git.nexveridian.com/NexVeridian/nexveridian-web/src/branch/main/LICENSE-Apache">LICENSE-APACHE</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>