From 20278a1907657f5537890530d87ac4db5b7d2ac6 Mon Sep 17 00:00:00 2001 From: Triston Armstrong Date: Tue, 26 Mar 2024 16:45:59 -0500 Subject: [PATCH] impliment use of askama macros and move some sections moved sections (tools, no css) from portfolio as it doesnt make much sense to put there --- templates/portfolio.html | 255 ++++++++++----------------------------- 1 file changed, 67 insertions(+), 188 deletions(-) diff --git a/templates/portfolio.html b/templates/portfolio.html index c1e58e9..30f641a 100644 --- a/templates/portfolio.html +++ b/templates/portfolio.html @@ -1,211 +1,90 @@ -{% extends "base.html" %} {% block title %}Portfolio{% endblock %} {% block -content %} +{% extends "base.html" %} +{% block title %}Portfolio{% endblock %} + +{% macro skill(link, label)%} + + {{label}} + +{% endmacro %} + +{% macro job(title, date, description)%} +
+

{{title}} + / {{date}} +

+

{{description}}

+
+{% endmacro %} + +{% block content %}

Triston Armstrong 🫰

- Full Stack Software Developer - @VentraHealth + Full Stack Software Developer + @VentraHealth

- I am a self taught Full Stack Software Developer with an unhealthy addiction - to solving problems using code. + I am a self taught Full Stack Software Developer with an unhealthy addiction + to solving problems using code.

🤹 Skills

- Typescript - | - Python - | - Rust - | - Javascript + {% call skill("https://www.typescriptlang.org/docs/handbook/intro.html", "Typescript") %} + | {% call skill("https://docs.python.org/3/", "Python") %} + | {% call skill("https://doc.rust-lang.org/std/index.html", "Rust") %} + | {% call skill("https://developer.mozilla.org/en-US/docs/Web/javascript#reference","Javascript") %}

💼 Jobs

-
-

- Ventra Health - / May '23 - Present -

-

Maintaining and iterating on an internal web application

-
- -
-

- Randstad Technologies / May '22 - May '23 -

-

Built Web Applications for external clients

-
- -
-

- Damiano Global Corporation / July '20 - Nov. '21 -

-

Built Web Applications for external clients

-
- -
-

- Makers Ladder LLC / Dec. '19 - Apr. '22 -

-

Did some thangs

-
+{% call job("Ventra Health","May '23 - Present","Maintaining and iterating on an internal web application") %} +{% call job("Randstad Technologies", "May '22 - May '23", "Built Web Applications for external clients") %} +{% call job("Damiano Global Corporation", "July '20 - Nov. '21", "Built Web Applications for external clients") %} +{% call job("Makers Ladder LLC", "Dec. '19 - Apr. '22", "Did some thangs") %}

🚧 Projects

- Solar Battery Monitor API - | - Armstrong Editor - | - Web Window Manager - | - Component Test Helper - | - Hive DAPP - | - Kivy Twisted Input Capture - | - Plant Monitor Node MCU - | - Oppo BDP 103 CLI - | - Sony Bravia Pro Server - | - Chat IO - | - Zip Code Distance App -

- -

🧰 Tools

-

- CSS-Tricks - | - Indie Hackers - | - W3Schools - | - Simple Icons - | - Hero Icons - | - Tailwind Cheatsheet - | - Tailwind Elements - | - Tailwind Components -

- -

🎨 NoCss

-

- Water CSS - | - MPV CSS - | - Bahunya - | - Marx - | - Sakura - | - Tacit - | - New CSS - | - Bullframe CSS - | - Markdown CSS (modest) + Solar Battery Monitor API + | + Armstrong Editor + | + Web Window Manager + | + Component Test Helper + | + Hive DAPP + | + Kivy Twisted Input Capture + | + Plant Monitor Node MCU + | + Oppo BDP 103 CLI + | + Sony Bravia Pro + Server + | + Chat IO + | + Zip Code Distance App

{% endblock %}