-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also updates homepage and deletes some empty project pages
- Loading branch information
1 parent
798e245
commit 016d103
Showing
8 changed files
with
30 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,9 @@ | ||
+++ | ||
+++ | ||
|
||
Hi! My name is Eli. I like to play with robots and programming languages, and | ||
I'm a Software Engineer at Datadog. | ||
|
||
I publish all my notes from my time at NC State here as well as occasional blog | ||
posts. | ||
|
||
If you want to contact/follow me for whatever reason, here's my contact | ||
gubbins: | ||
Occasional writer, software engineer, transit nerd. | ||
|
||
* GitHub: <https://github.com/elihunter173/> | ||
* LinkedIn: <https://linkedin.com/in/elihunter173/> | ||
* Email: [[email protected]](mailto:[email protected]) | ||
* Résumé: [https://elihunter173.com/elihunter173_resume.pdf](/elihunter173_resume.pdf) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
+++ | ||
title = "Blog" | ||
template = "blog/list.html" | ||
page_template = "blog/page.html" | ||
sort_by = "date" | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block content %} | ||
<h1 class="title">{{ section.title }}</h1> | ||
{{ section.content | safe }} | ||
|
||
{% for page in section.pages %} | ||
<h2><a href="{{ page.path | safe }}">{{ page.title }}</a></h2> | ||
{{ page.description }} | ||
{% endfor %} | ||
|
||
{% endblock content %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block content %} | ||
<header> | ||
<h1 class="title">{{ page.title }}</h1> | ||
</header> | ||
|
||
{{ page.content | safe }} | ||
{% endblock content %} |