diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000..e07813d --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,14 @@ +ARG VARIANT=latest +FROM docker.io/oven/bun:${VARIANT} + +RUN apt-get update \ + && apt-get -y install --no-install-recommends \ + git \ + nano \ + vim-tiny \ + && apt-get auto-remove -y \ + && apt-get clean -y \ + && chsh -s $(which bash) bun \ + && echo 'export PS1="\e[01;32m\u\e[m:\e[01;34m\w\e[m\$ "' >> /home/bun/.bashrc + +USER bun \ No newline at end of file diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..beb265f --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,32 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/debian +{ + "name": "Debian", + // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile + "image": "mcr.microsoft.com/devcontainers/base:bullseye", + // Podman settings to run as non-root user + // "containerUser": "vscode", + // "runArgs": [ + // "--userns=keep-id", + // "--network=host" + // ], + "features": { + "ghcr.io/devcontainers/features/hugo:1": { + "extended": true + }, + "ghcr.io/devcontainers/features/go:1": {}, + "ghcr.io/devcontainers/features/node:1": {}, + "ghcr.io/devcontainers/features/python:1": {} + } + + // Features to add to the dev container. More info: https://containers.dev/features. + // "features": {}, + // Use 'forwardPorts' to make a list of ports inside the container available locally. + // "forwardPorts": [], + + // Configure tool-specific properties. + // "customizations": {}, + + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "root" +} \ No newline at end of file diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 792f45f..3c606dd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,33 +1,37 @@ -# This is a basic workflow to help you get started with Actions +name: GitHub Pages -name: build-resume - -# Controls when the action will run. on: - # Triggers the workflow on push or pull request events but only for the master branch push: - branches: [main] + branches: + - main # Set a branch to deploy + - hugo-site + pull_request: jobs: - build-resume: - runs-on: ubuntu-latest - container: pandoc/latex:2.9 + deploy: + runs-on: ubuntu-22.04 + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 + with: + submodules: true # Fetch Hugo themes (true OR recursive) + fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - - name: Install dependencies - run: | - apk add make texlive git + - name: Setup Hugo + uses: peaceiris/actions-hugo@v3 + with: + hugo-version: '0.119.0' + # extended: true - - name: Build Resume + - name: Build run: | - export TEXMF=/usr/share/texmf-dist - make html - ls /__w/resume/resume/output + cd exampleSite + hugo -t resume --themesDir ../.. - - name: Publish + - name: Deploy uses: peaceiris/actions-gh-pages@v3 + if: github.ref == 'refs/heads/main' with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: /__w/resume/resume/output + publish_dir: ./public \ No newline at end of file diff --git a/.gitignore b/.gitignore index 9b1960e..22fbd9a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ -output/ \ No newline at end of file +output/ +public/ + +.hugo_build.lock \ No newline at end of file diff --git a/LICENSE b/LICENSE deleted file mode 100644 index fa48476..0000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2014 Mark Szepieniec - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. \ No newline at end of file diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..769fa02 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2018 Eddie A. Webb + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/Makefile b/Makefile deleted file mode 100644 index cfec1ab..0000000 --- a/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -OUT_DIR=output -IN_DIR=markdown -STYLES_DIR=styles -STYLE=chmduquesne - -all: html docx rtf pdf - -pdf: init - for f in $(IN_DIR)/*.md; do \ - FILE_NAME=`basename $$f | sed 's/.md//g'`; \ - echo $$FILE_NAME.pdf; \ - pandoc --standalone --template $(STYLES_DIR)/$(STYLE).tex \ - --from markdown --to context \ - --variable papersize=A4 \ - --output $(OUT_DIR)/$$FILE_NAME.tex $$f > /dev/null; \ - mtxrun --path=$(OUT_DIR) --result=$$FILE_NAME.pdf --script context $$FILE_NAME.tex > $(OUT_DIR)/context_$$FILE_NAME.log 2>&1; \ - done - -html: init -# Copy image folder to output dir so images are available in resume*.html - cp -r img/ output/ - for f in $(IN_DIR)/*.md; do \ - FILE_NAME=`basename $$f | sed 's/.md//g'`; \ - echo $$FILE_NAME.html; \ - pandoc --standalone --include-in-header $(STYLES_DIR)/$(STYLE).css \ - --lua-filter=pdc-links-target-blank.lua \ - --from markdown --to html \ - --output $(OUT_DIR)/$$FILE_NAME.html $$f \ - --metadata pagetitle=$$FILE_NAME;\ - done - -docx: init - for f in $(IN_DIR)/*.md; do \ - FILE_NAME=`basename $$f | sed 's/.md//g'`; \ - echo $$FILE_NAME.docx; \ - pandoc --standalone $$SMART $$f --output $(OUT_DIR)/$$FILE_NAME.docx; \ - done - -rtf: init - for f in $(IN_DIR)/*.md; do \ - FILE_NAME=`basename $$f | sed 's/.md//g'`; \ - echo $$FILE_NAME.rtf; \ - pandoc --standalone $$SMART $$f --output $(OUT_DIR)/$$FILE_NAME.rtf; \ - done - -init: dir version - -dir: - mkdir -p $(OUT_DIR) - -version: - PANDOC_VERSION=`pandoc --version | head -1 | cut -d' ' -f2 | cut -d'.' -f1`; \ - if [ "$$PANDOC_VERSION" -eq "2" ]; then \ - SMART=-smart; \ - else \ - SMART=--smart; \ - fi \ - -clean: - rm -f $(OUT_DIR)/* diff --git a/README.md b/README.md index 77df8d4..f28e61c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,85 @@ -# Description +# hugo Resume -[**My Resume**](https://collinbrown95.github.io/resume/resume-detailed.html) +Created from [Start Bootstrap - Resume](https://startbootstrap.com/template-overviews/resume/). +This is basically a single-page website with auto-scrolling based on left-hand nav. Dedicated project/publications pages allow more detail. -**Attribution**: The resume templates and styles used in this repository are borrowed from the [pandoc_resume](https://github.com/mszep/pandoc_resume) project. + + +- [Examples](#examples) + +- [Setup & Use](#setup--use) + - [Summary](#summary) + - [Data files](#data-files) + - [Projects](#projects) + - [Publications](#publications) + - [Blog / Posts](#blog--posts) + - [Template params](#template-params) + - [Internationalization](#internationalization) +- [Credits](#credits) + - [Contributions](#contributions) + - [Start Bootstrap Resume](#start-bootstrap-resume) + +## Setup & Use + +This theme uses a combination of a custom archetype `projects` and some data files to drive content. + +You can test the provided [exampleSite](exampleSite) after cloning with the command: +`cd exampleSite;hugo -t hugo-resume --themesDir ../.. server` + +### Summary +Edit the main `contents/_index.md with a brief bio/summary` + +### Data files +Data files are used for simple content presented on the homepage. + +- [data/skills.json](https://github.com/eddiewebb/hugo-resume/blob/master/exampleSite/data/skills.json) +- [data/experience.json](https://github.com/eddiewebb/hugo-resume/blob/master/exampleSite/data/experience.json) +- [data/education.json](https://github.com/eddiewebb/hugo-resume/blob/master/exampleSite/data/education.json) + + +### Projects +Initially projects were in their own JSON file too, but I decided I wanted to allow more detail and custom formatting. +Projects are added to one of 2 subfolders of `creations` or `contributions`. The difference indicates your role as originator or colaborator. Use `hugo add projects/TYPE/name-of-project.md` to leverage the proper archetype. + +### Publications +Similar to projects, create them under `publications`. Include any papers, speaking engagements, articles, etc. + +### Blog / Posts +Similar to posts, create them under `blog`. Include any thoughts, musiings, etc. +**This template does not support a `posts` folder** + +### Template params + +All personal information outside the above details is captured by params in [`config.toml`](https://github.com/eddiewebb/hugo-resume/blob/master/exampleSite/config.toml). + +## Credits + +This project borrows significantly from the [Hugo Resume](https://github.com/eddiewebb/hugo-resume) Hugo Theme. + +### Contributions +The following users have made notable contributions: +- [Anthony Whitford](https://github.com/awhitford) +- [Kaushal Modi](https://github.com/kaushalmodi) +- [Julien Rouse](https://github.com/JulienRouse) + +### Start Bootstrap Resume + +Start Bootstrap is an open source library of free Bootstrap templates and themes. All of the free templates and themes on Start Bootstrap are released under the MIT license, which means you can use them for any purpose, even for commercial projects. + +* https://startbootstrap.com +* https://twitter.com/SBootstrap + +Start Bootstrap was created by and is maintained by **[David Miller](http://davidmiller.io/)**, Owner of [Blackrock Digital](http://blackrockdigital.io/). + +* http://davidmiller.io +* https://twitter.com/davidmillerskt +* https://github.com/davidtmiller + +Start Bootstrap is based on the [Bootstrap](http://getbootstrap.com/) framework created by [Mark Otto](https://twitter.com/mdo) and [Jacob Thorton](https://twitter.com/fat). + + +# Attribution + +## Icons + +- Icons from *Skills* section are from [Icons8](https://icons8.com/) and [Devicon](https://github.com/devicons/devicon). \ No newline at end of file diff --git a/actions/action.yml b/actions/action.yml deleted file mode 100644 index 854e496..0000000 --- a/actions/action.yml +++ /dev/null @@ -1,7 +0,0 @@ -# action.yml -name: "Texlive Build" -description: "Build a document using texlive" -runs: - using: "docker" - image: "docker://ghcr.io/mszep/pandoc_resume:master" - entrypoint: "/entrypoint.sh" diff --git a/actions/entrypoint.sh b/actions/entrypoint.sh deleted file mode 100755 index 7fe0a24..0000000 --- a/actions/entrypoint.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -ls -lah -pwd -make diff --git a/exampleSite/config.toml b/exampleSite/config.toml new file mode 100644 index 0000000..43ec3e6 --- /dev/null +++ b/exampleSite/config.toml @@ -0,0 +1,39 @@ +title = "Collin Brown" +baseURL = "http://localhost:8000" +theme = "resume" +languageCode = "en-ca" +PygmentsCodeFences = true +PygmentsCodeFencesGuessSyntax = true +PygmentsStyle = "monokai" +enableGitInfo = false + +[params] +credentials = "M.Sc. Candidate, M.A." +title = "Sr. Data Architect & Technical Lead" +favicon = "/favicon.ico" +firstName = "Collin" +lastName = "Brown" +profileImage = "img/collin.png" +showSocializations = true +showQr = true +sections = [ + "skills", + "experience", + "education", + "publications", + "contributions", +] + +[[params.handles]] +link = "https://www.linkedin.com/in/collin-brown-499a4580/" +name = "LinkedIn" + +[[params.handles]] +link = "https://github.com/collinbrown95/" +name = "GitHub" + +[outputs] +home = ["HTML", "JSON"] + +[taxonomies] +tag = "tags" diff --git a/exampleSite/content/_index.md b/exampleSite/content/_index.md new file mode 100644 index 0000000..219d3d1 --- /dev/null +++ b/exampleSite/content/_index.md @@ -0,0 +1,15 @@ +--- +title: "Home" +outputs: +- html +- rss +- json +--- + +Proven Data Engineering and Solution Architecture expertise. Track record of successful delivery of complex data-driven software projects in large enterprise settings. + +----- + +### Overview + +Combining my background in Data Science, Software Engineering, and Platform Development, I've driven projects at every level of the data value chain. From pioneering proof-of-concepts to leading large-scale system redesigns, I've honed expertise in scalable data architectures and DevOps best practices. My focus now is on implementing data mesh architectures by embedding myself in domain-aligned data product teams, ensuring that valuable concrete solutions drive meaningful organizational transformation. diff --git a/exampleSite/content/projects/contributions/_index.md b/exampleSite/content/projects/contributions/_index.md new file mode 100644 index 0000000..21d1f7f --- /dev/null +++ b/exampleSite/content/projects/contributions/_index.md @@ -0,0 +1,6 @@ +--- +title: Open Source Contributions +link: NA +image: /img/marketplace-summary.webp +type: hidden # Don't list as a page in Projects summary +--- diff --git a/exampleSite/content/projects/contributions/docanno.md b/exampleSite/content/projects/contributions/docanno.md new file mode 100644 index 0000000..177480d --- /dev/null +++ b/exampleSite/content/projects/contributions/docanno.md @@ -0,0 +1,10 @@ +--- +title: "Doccano" +link: "https://github.com/doccano/doccano/pull/976" +image: "/img/doccano.png" +description: "Open source annotation tool for machine learning practitioners. " +featured: true +tags: ["Python", "JavaScript", "Machine Learning"] +--- + +Implemented internationalization on the user interface, and also implemented miscellaneous small feature requests and bug fixes. diff --git a/exampleSite/content/projects/contributions/lingui-js.md b/exampleSite/content/projects/contributions/lingui-js.md new file mode 100644 index 0000000..a715760 --- /dev/null +++ b/exampleSite/content/projects/contributions/lingui-js.md @@ -0,0 +1,12 @@ +--- +title: Lingui-JS +link: 'https://github.com/lingui/js-lingui/pull/1752' +image: /img/lingui-logo.svg +description: >- + An open source internationalization library for JavaScript. +featured: true +tags: + - JavaScript +--- + +I contributed an example of setting up an Rspack project with Lingui-JS. diff --git a/exampleSite/content/publications/_index.md b/exampleSite/content/publications/_index.md new file mode 100644 index 0000000..37f5d3f --- /dev/null +++ b/exampleSite/content/publications/_index.md @@ -0,0 +1,8 @@ +--- +title: Publications +link: NA +image: /img/organicdevops.webp +description: NA +type: hidden +--- + diff --git a/exampleSite/content/publications/bitcoin-fees.md b/exampleSite/content/publications/bitcoin-fees.md new file mode 100644 index 0000000..8339119 --- /dev/null +++ b/exampleSite/content/publications/bitcoin-fees.md @@ -0,0 +1,10 @@ +--- +title: "What Drives Bitcoin Fees? Using SegWit to Assess Bitcoin’s Long-Run Sustainability" +date: 2021-01-21 +pubtype: "Paper" +featured: true +description: "Can Bitcoin remain tamper-proof in the long run? We use block-level data from the Bitcoin blockchain to estimate the impact of congestion and the US dollar price on fee rates." +link: "https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4013550" +--- + +Can Bitcoin remain tamper-proof in the long run? We use block-level data from the Bitcoin blockchain to estimate the impact of congestion and the US dollar price on fee rates. The introduction and adoption of the segregated witness (SegWit) protocol allows us to identify an aggregate demand curve for Bitcoin transactions. We find that SegWit has reduced fee revenue by about 70%. Fee revenue could be maximized at a block size of about 0.6 megabytes when SegWit adoption remains at current levels. At this block size, maximum fee revenue would be equivalent to one-eighth of the current average block reward. Hence, large sustained price increases are required to keep mining rewards constant in the long run. diff --git a/exampleSite/data/education.json b/exampleSite/data/education.json new file mode 100644 index 0000000..c1bbee8 --- /dev/null +++ b/exampleSite/data/education.json @@ -0,0 +1,27 @@ +[ + { + "school":"[Georgia Institute of Technology](https://www.gatech.edu/)", + "degree":"Master of Science", + "major":"Computer Science", + "notes":"Interactive Intelligence Specialization", + "range":"2024 - 2027 (Expected)" + }, + { + "school": "[Athabasca University](https://www.athabascau.ca/)", + "major": "Computer Science Core Curriculum", + "range": "2020-2023" + }, + { + "school":"[Queen's University](https://www.queensu.ca/)", + "degree":"Master of Arts", + "major":"Economics", + "range":"2017-2018" + }, + { + "school": "[McMaster University](https://www.mcmaster.ca/)", + "degree": "Bachelor of Arts", + "major": "Economics", + "range": "2013-2017", + "notes": "Minor in Mathematics and Statistics" + } +] diff --git a/exampleSite/data/experience.json b/exampleSite/data/experience.json new file mode 100644 index 0000000..dafeab0 --- /dev/null +++ b/exampleSite/data/experience.json @@ -0,0 +1,26 @@ +[ + { + "role":"Sr. Data Architect & Technical Lead", + "company":"Consumer Prices Division - Statistics Canada", + "summary":"Leading the divisional architecture task team to align existing data product sub-systems with target enterprise architecture goals, and establishing best practices for development, aiming to enhance data product maturity and open-source development.", + "range":"May 2024 - Present" + }, + { + "role":"Sr. Platform Developer", + "company":"Various IT Teams - Statistics Canada", + "summary":"Led multiple development efforts for a Kubernetes-native data analytics platform, implementing horizontal capabilities and advising on data mesh architecture.", + "range":"October 2020 - April 2024" + }, + { + "role":"Data Engineering Specialist", + "company":"Data Science Division - Statistics Canada", + "summary":"Led an 18-month redesign of a large data processing system for transportation statistics. Delivered the solution on time, under budget, and ensured a smooth transition to production.", + "range":"October 2020 - April 2024" + }, + { + "role":"Jr. Data Scientist", + "company":"Data Science Division - Employment and Social Development Canada", + "summary":"Led Proof-of-Concept projects in data analytics and machine learning, delivering actionable insights and automation through small-scale internal tools and analysis outputs.", + "range":"August 2018 - September 2020" + } +] diff --git a/exampleSite/data/skills.json b/exampleSite/data/skills.json new file mode 100644 index 0000000..e2ec240 --- /dev/null +++ b/exampleSite/data/skills.json @@ -0,0 +1,161 @@ +[ + { + "grouping": "Soft Skills", + "skills": [ + { + "name": "Prioritizing Valuable Work", + "img": "https://img.icons8.com/external-wanicon-lineal-color-wanicon/64/external-prioritize-business-administration-wanicon-lineal-color-wanicon.png" + }, + { + "name": "Understanding Business Requirements", + "img": "https://img.icons8.com/external-flaticons-lineal-color-flat-icons/64/external-requirements-agile-flaticons-lineal-color-flat-icons.png" + }, + { + "name": "Optimizing Team Interactions", + "img": "https://img.icons8.com/ios-filled/50/decentralized-network.png" + }, + { + "name": "Documentation", + "img": "https://img.icons8.com/external-flaticons-lineal-color-flat-icons/64/external-documentation-productivity-flaticons-lineal-color-flat-icons-2.png" + }, + { + "name": "Project Management", + "img": "https://img.icons8.com/arcade/64/project-management.png" + } + ] + }, + { + "grouping": "Solution Architecture", + "skills": [ + { + "name": "System Design", + "img": "https://img.icons8.com/external-inipagistudio-mixed-inipagistudio/64/external-system-industrial-manufacturing-inipagistudio-mixed-inipagistudio.png" + }, + { + "name": "Software Design", + "img": "https://img.icons8.com/ios/50/code--v1.png" + }, + { + "name": "Cloud Cost Optimization", + "img": "https://img.icons8.com/color/48/us-dollar-circled--v1.png" + }, + { + "name": "Cloud Networking", + "img": "https://img.icons8.com/fluency/48/router.png" + }, + { + "name": "Test Automation", + "img": "https://img.icons8.com/pulsar-gradient/48/pass.png" + } + ] + }, + { + "grouping": "Data Engineering", + "skills": [ + { + "name": "Apache Spark", + "icon": "devicon-apachespark-original colored" + }, + { + "name": "SQL", + "img": "https://img.icons8.com/external-soft-fill-juicy-fish/60/external-sql-coding-and-development-soft-fill-soft-fill-juicy-fish.png" + }, + { + "name": "Data Modelling", + "img": "https://img.icons8.com/external-smashingstocks-mixed-smashing-stocks/68/external-data-warehouse-data-analytics-and-statistics-smashingstocks-mixed-smashing-stocks.png" + } + ] + }, + { + "grouping": "Programming Languages, Operating Systems & Tools", + "skills": [ + { + "name": "Python", + "icon": "devicon-python-plain colored" + }, + { + "name": "Java", + "icon": "devicon-java-plain colored" + }, + { + "name": "Go", + "icon": "devicon-go-plain colored" + }, + { + "name": "JavaScript", + "icon": "devicon-javascript-plain colored" + }, + { + "name": "Linux", + "icon": "devicon-linux-plain colored" + }, + { + "name": "Git", + "icon": "devicon-git-plain colored" + }, + { + "name": "Pytest", + "icon": "devicon-pytest-plain colored" + } + ] + }, + { + "grouping": "Cloud Providers and DevOps", + "skills": [ + { + "name": "Azure", + "icon": "devicon-azure-plain colored" + }, + { + "name": "Google Cloud Platform", + "icon": "devicon-googlecloud-plain colored" + }, + { + "name": "Terraform", + "icon": "devicon-terraform-plain colored" + }, + { + "name": "Docker", + "icon": "devicon-docker-plain colored" + }, + { + "name": "Kubernetes", + "icon": "devicon-kubernetes-plain colored" + }, + { + "name": "ArgoCD and Workflows", + "icon": "devicon-argocd-plain colored" + } + ] + }, + { + "grouping": "Platforms & Project Management", + "skills": [ + { + "name": "GitLab", + "icon": "devicon-gitlab-plain colored" + }, + { + "name": "Jira", + "icon": "devicon-jira-plain colored" + }, + { + "name": "GitHub", + "icon": "devicon-github-original colored" + } + ] + }, + { + "grouping": "Natural Languages", + "skills": [ + { + "name": "English (Fluent)", + "img": "https://img.icons8.com/color/48/great-britain-circular.png" + }, + { + "name": "French (Limited Proficiency)", + "img": "https://img.icons8.com/color/48/france-circular.png" + } + ] + } +] \ No newline at end of file diff --git a/exampleSite/static/favicon.ico b/exampleSite/static/favicon.ico new file mode 100644 index 0000000..6424d30 Binary files /dev/null and b/exampleSite/static/favicon.ico differ diff --git a/exampleSite/static/img/collin.png b/exampleSite/static/img/collin.png new file mode 100644 index 0000000..b6c063c Binary files /dev/null and b/exampleSite/static/img/collin.png differ diff --git a/exampleSite/static/img/doccano.png b/exampleSite/static/img/doccano.png new file mode 100644 index 0000000..10d1e5d Binary files /dev/null and b/exampleSite/static/img/doccano.png differ diff --git a/exampleSite/static/img/lingui-logo.svg b/exampleSite/static/img/lingui-logo.svg new file mode 100644 index 0000000..79cc54a --- /dev/null +++ b/exampleSite/static/img/lingui-logo.svg @@ -0,0 +1,11 @@ + diff --git a/img/github.png b/img/github.png deleted file mode 100644 index 044bc49..0000000 Binary files a/img/github.png and /dev/null differ diff --git a/img/linkedin.png b/img/linkedin.png deleted file mode 100644 index 8243562..0000000 Binary files a/img/linkedin.png and /dev/null differ diff --git a/layouts/404.html b/layouts/404.html new file mode 100644 index 0000000..e69de29 diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..85c8768 --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,75 @@ + + +
+ + +{{ .Content }}
+ {{ range .Data.Pages.ByWeight }} + {{ if ne .Type "markdown" }} + {{ partial (printf "%s%s" .Type "Summary") . }} + {{ end }} + {{ end }} + {{ range .Sections }} +{{ .Content }}
+ {{ range .Pages }} + {{ if ne .Type "markdown" }} + {{ partial (printf "%s%s" .Type "Summary") . }} + {{ end }} + {{ end }} + {{ end }} +Project link: {{ . }}
{{ end }} +{{ .notes | markdownify }} +
{{ .summary | markdownify }}
++ Icons provided by + + Icons8 + + and + + Devicon + . +
+{{ partial "techtags" . }}
+See all {{ .Title | pluralize }} for more examples!
+Project link: {{ . }}
{{ end }} + {{ partial "techtags" . }} +Link to full {{ .Params.pubtype }}
+ {{ with .Params.image }}{{ end }} + {{ .Content }} ++ {{ partial "techtags" . }} +
+