diff --git a/README.md b/README.md index a587850..4cca64b 100644 --- a/README.md +++ b/README.md @@ -1 +1,4 @@ Source code for NexVeridian.com built using [Zola](https://github.com/getzola/zola) + +# License +All code in this repository is dual-licensed under either [License-MIT](./LICENSE-MIT) or [LICENSE-APACHE](./LICENSE-Apache) at your option. This means you can select the license you prefer. [Why dual license](https://github.com/bevyengine/bevy/issues/2373). diff --git a/config.toml b/config.toml index b928d65..afa3062 100644 --- a/config.toml +++ b/config.toml @@ -1,5 +1,5 @@ # The URL the site will be built for -base_url = "https://blog.nexveridian.com/" +base_url = "https://nexveridian.com/" # The site title and description; used in feeds by default. title = "" @@ -38,15 +38,15 @@ menu_items = [ # each of these is optional, name and url are required # $BASE_URL is going to be substituted by base_url from configuration - { name = "home", url = "$BASE_URL" }, + { name = "Home", url = "$BASE_URL" }, # tags should only be enabled if you have "tags" taxonomy # see documentation below for more details - { name = "blog", url = "$BASE_URL/archive" }, - { name = "tags", url = "$BASE_URL/tags" }, - { name = "about me", url = "$BASE_URL/about" }, + { name = "Blog", url = "$BASE_URL/archive" }, + { name = "Tags", url = "$BASE_URL/tags" }, + { name = "About Me", url = "$BASE_URL/about" }, - { name = "resume", url = "$BASE_URL/Elijah_McMorris_Resume.pdf", newtab = true }, + { name = "Resume", url = "$BASE_URL/Elijah_McMorris_Resume.pdf", newtab = true }, ] show_only_description = true diff --git a/content/pages/about.md b/content/pages/about.md index 6e51fba..b6c55b0 100644 --- a/content/pages/about.md +++ b/content/pages/about.md @@ -3,7 +3,7 @@ title = "About Me" path = "about" +++ -I recently finished BAS in Software Development, Im looking for Software Engineering positions, I live in Kirkland WA, I'm a US citizen. I've contributed multiple substantial code PRs to JupyterLab and Loco.rs, created an official extension for Loco.rs adding OpenAPI integration, and I have several open source projects on my resume. My strongest programming languages: Rust, TypeScript, Python, and I also use Nix for a lot of my projects. +I recently finished BAS in Software Development. I'm looking for Software Engineering positions, I live in Kirkland WA, I'm a US citizen. I've contributed multiple substantial code PRs to JupyterLab and Loco.rs. Including creating an official extension for Loco.rs adding OpenAPI integration. I have several open source projects on my resume. My strongest programming languages are: Rust, TypeScript, Python, and I also use Nix for a lot of my projects. # Contact Me: - [Email](mailto:nexveridian@gmail.com) diff --git a/static/Elijah_McMorris_Resume.pdf b/static/Elijah_McMorris_Resume.pdf index 7bf8f15..18c013f 100755 Binary files a/static/Elijah_McMorris_Resume.pdf and b/static/Elijah_McMorris_Resume.pdf differ diff --git a/templates/archive.html b/templates/archive.html index 46cf173..16458f6 100644 --- a/templates/archive.html +++ b/templates/archive.html @@ -16,4 +16,4 @@ {{ post_macros::list_posts(pages=blog_section.pages) }} -{% endblock content %} \ No newline at end of file +{% endblock content %} diff --git a/templates/index.html b/templates/index.html index 2633d78..52e39aa 100644 --- a/templates/index.html +++ b/templates/index.html @@ -83,7 +83,7 @@ - +

JupyterLab Contributions

TypeScript

@@ -94,7 +94,7 @@
- +

Loco.rs Contributions

Rust

@@ -106,7 +106,7 @@
- +

ARK Invest ETF Tracker

Next.js, TypeScript

@@ -133,6 +133,15 @@
+ +
+

Nix Packages Contributions

+

Nix

+

Added various package updates and fixes to Nix Packages

+ View PRs → +
+
+

Next Url Shortener

@@ -176,6 +185,11 @@
Source Code  + + :: + Dual Licensed: LICENSE-MIT or LICENSE-APACHE  + + :: Theme: Terminimal by pawroman diff --git a/templates/section.html b/templates/section.html index 57c9f4b..7ba761d 100644 --- a/templates/section.html +++ b/templates/section.html @@ -7,7 +7,7 @@ {% block content %}

{{ section.title }}

- + {%- if paginator %} {%- set show_pages = paginator.pages -%} {% else %} @@ -20,7 +20,7 @@ {{ post_macros::content(page=page, summary=true, show_only_description=page.extra.show_only_description | default(value=false)) }}
{% endfor -%} - +
-{% endblock content %} \ No newline at end of file +{% endblock content %} diff --git a/templates/tags/list.html b/templates/tags/list.html index d4a7fdc..9856976 100644 --- a/templates/tags/list.html +++ b/templates/tags/list.html @@ -22,4 +22,4 @@ {% endfor %} -{% endblock content %} \ No newline at end of file +{% endblock content %} diff --git a/templates/tags/single.html b/templates/tags/single.html index 1298741..dda5f64 100644 --- a/templates/tags/single.html +++ b/templates/tags/single.html @@ -22,4 +22,4 @@ {{ post_macros::list_posts(pages=term.pages) }} -{% endblock content %} \ No newline at end of file +{% endblock content %} diff --git a/themes/terminimal/sass/footer.scss b/themes/terminimal/sass/footer.scss index 21be315..37e03ed 100644 --- a/themes/terminimal/sass/footer.scss +++ b/themes/terminimal/sass/footer.scss @@ -1,64 +1,64 @@ @import "variables"; .footer { - padding: 40px 0; - flex-grow: 0; - opacity: .5; + padding: 40px 0; + flex-grow: 0; + opacity: 0.5; - &__inner { - display: flex; - align-items: center; - justify-content: space-between; - margin: 0; - width: 760px; - max-width: 100%; - - @media (max-width: $tablet-max-width) { - flex-direction: column; - } - } - - a { - color: inherit; - } - - .copyright { - display: flex; - flex-direction: row; - align-items: center; - font-size: 1rem; - color: var(--light-color-secondary); - - &--user { - margin: auto; - text-align: center; - } - - & > *:first-child:not(:only-child) { - margin-right: 10px; - - @media (max-width: $tablet-max-width) { - border: none; - padding: 0; + &__inner { + display: flex; + align-items: center; + justify-content: space-between; margin: 0; - } + /* width: 760px; */ + max-width: 100%; + + @media (max-width: $tablet-max-width) { + flex-direction: column; + } } - @media (max-width: $tablet-max-width) { - flex-direction: column; - margin-top: 10px; + a { + color: inherit; } - } - .copyright-theme-sep { - @media (max-width: $tablet-max-width) { - display: none; - } - } + .copyright { + display: flex; + flex-direction: row; + align-items: center; + font-size: 1rem; + color: var(--light-color-secondary); - .copyright-theme { - @media (max-width: $tablet-max-width) { - font-size: 0.75rem; + &--user { + margin: auto; + text-align: center; + } + + & > *:first-child:not(:only-child) { + margin-right: 10px; + + @media (max-width: $tablet-max-width) { + border: none; + padding: 0; + margin: 0; + } + } + + @media (max-width: $tablet-max-width) { + flex-direction: column; + margin-top: 10px; + } + } + + .copyright-theme-sep { + @media (max-width: $tablet-max-width) { + display: none; + } + } + + .copyright-theme { + @media (max-width: $tablet-max-width) { + font-size: 0.75rem; + } } - } } diff --git a/themes/terminimal/templates/macros/menu.html b/themes/terminimal/templates/macros/menu.html index 090388f..e141505 100644 --- a/themes/terminimal/templates/macros/menu.html +++ b/themes/terminimal/templates/macros/menu.html @@ -49,4 +49,3 @@ {% endif -%} {% endmacro menu %} -