Rewrite site with 11ty
This commit is contained in:
parent
815d89ad49
commit
3da1f74f98
56 changed files with 5242 additions and 911 deletions
30
src/_sections/Colors.njk
Normal file
30
src/_sections/Colors.njk
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
title: Colors
|
||||
eleventyNavigation:
|
||||
key: Colors
|
||||
icon: eye-dropper
|
||||
order: 3
|
||||
tags: [ "MainPage" ]
|
||||
sectionOrder: 3
|
||||
draft: true
|
||||
---
|
||||
|
||||
<div class="color-blocks">
|
||||
<div class="color-block" style="background-color: var(--primary-dark-color); color: white;">
|
||||
Primary Dark
|
||||
</div>
|
||||
<div class="color-block" style="background-color: var(--primary-color); color: white;">
|
||||
Primary
|
||||
</div>
|
||||
<div class="color-block" style="background-color: var(--primary-light-color); color: black;">
|
||||
Primary Light
|
||||
</div>
|
||||
<div class="color-block" style="background-color: var(--complementary-color); color: black">
|
||||
Complementary
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<input type="checkbox" id="testCheckBox" name="testCheckBox" checked />
|
||||
<label for="testCheckBox">This checkbox has the accent color</label>
|
||||
</div>
|
||||
11
src/_sections/Contact.md
Normal file
11
src/_sections/Contact.md
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
title: Contact
|
||||
eleventyNavigation:
|
||||
key: Contact
|
||||
icon: envelope
|
||||
order: 2
|
||||
tags: [ "MainPage" ]
|
||||
sectionOrder: 2
|
||||
---
|
||||
|
||||
Send an email to `contact @ this site`
|
||||
25
src/_sections/Projects.njk
Normal file
25
src/_sections/Projects.njk
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
---
|
||||
title: Projects
|
||||
eleventyNavigation:
|
||||
key: Projects
|
||||
icon: screwdriver-wrench
|
||||
order: 1
|
||||
tags: [ "MainPage" ]
|
||||
sectionOrder: 1
|
||||
---
|
||||
|
||||
<div class="row-lg-3">
|
||||
{% for project in projects %}
|
||||
<section class="col card">
|
||||
<h3>{{ project.name }}</h3>
|
||||
<p>{{ project.description }}</p>
|
||||
<ul class="card-links">
|
||||
{% for link in project.links %}
|
||||
<li>
|
||||
<a href="{{ link.url }}" target="_blank">{{ link.title }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</section>
|
||||
{% endfor %}
|
||||
</div>
|
||||
3
src/_sections/_sections.11tydata.json
Normal file
3
src/_sections/_sections.11tydata.json
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"permalink": false
|
||||
}
|
||||
7
src/_sections/main.md
Normal file
7
src/_sections/main.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: Neil Brommer
|
||||
sectionOrder: 0
|
||||
tags: [ "MainPage" ]
|
||||
---
|
||||
|
||||
Full-stack web developer at [Washington State University](https://wsu.edu)
|
||||
Loading…
Add table
Add a link
Reference in a new issue