Rewrite site with 11ty

This commit is contained in:
Neil Brommer 2023-07-06 16:24:56 -07:00
parent 815d89ad49
commit 3da1f74f98
56 changed files with 5242 additions and 911 deletions

1
src/_data/layout.js Normal file
View file

@ -0,0 +1 @@
module.exports = "../_includes/layouts/layout.njk";

46
src/_data/projects.json Normal file
View file

@ -0,0 +1,46 @@
[
{
"name": "Start",
"description": "A new tab page that displays lists of links using the browsers indexedDB to store all data",
"links": [
{
"title": "Site",
"url": "https://start.neilbrommer.com/"
},
{
"title": "Source Code",
"url": "https://github.com/NeilBrommer/NewTabPage"
}
]
},
{
"name": "Blazor Start",
"description": "A work in progress rewrite of the Start project using Blazor WebAssembly",
"links": [
{
"title": "Source Code",
"url": "https://github.com/NeilBrommer/BlazorStart"
}
]
},
{
"name": "Website",
"description": "The source code for this website",
"links": [
{
"title": "Source Code",
"url": "https://github.com/NeilBrommer/Personal-Site"
}
]
},
{
"name": "Auto Dark",
"description": "A small utility for setting/toggling the Windows 10 dark theme. Useful in combination with the Windows Task Scheduler to automatically change the theme.",
"links": [
{
"title": "Source Code",
"url": "https://github.com/NeilBrommer/WindowsAutoDark"
}
]
}
]

View file

@ -0,0 +1,17 @@
[
{
"name": "GitHub",
"icon": "github",
"url": "https://github.com/NeilBrommer"
},
{
"name": "CodePen",
"icon": "codepen",
"url": "https://codepen.io/NeilBrommer"
},
{
"name": "LinkedIn",
"icon": "linkedin",
"url": "https://www.linkedin.com/in/neilbrommer/"
}
]