added some more content. fixed CV links, Fixed some links on the landing page
This commit is contained in:
parent
8e31ae2fd2
commit
48b6fab92c
19
content/_index.md
Normal file
19
content/_index.md
Normal file
@ -0,0 +1,19 @@
|
||||
+++
|
||||
date = '2025-03-19T08:44:50-04:00'
|
||||
draft = true
|
||||
title = ''
|
||||
+++
|
||||
|
||||
Huzzah! You've traveled to a new piece of the internet!
|
||||
|
||||
This is my personal website. On it, you will find the following
|
||||
details:
|
||||
|
||||
<!-- TODO: FIX THESE LINKS -->
|
||||
1. My [CV](CV.pdf)
|
||||
2. My current [Projects](/projects/_index.md)
|
||||
3. [Blog posts](/blog/_index.md) about what I'm currently working on
|
||||
|
||||
<!-- TODO: MAKE SURE MAIL LINK WORKS -->
|
||||
If for any reason you would like to contact me, I am most easily
|
||||
reached at [yourstruly@danesabo.com](mailto:yourstruly@danesabo.com).
|
||||
12
content/blog/_index.md
Normal file
12
content/blog/_index.md
Normal file
@ -0,0 +1,12 @@
|
||||
+++
|
||||
title = 'Blog'
|
||||
date = 2025-03-19T08:55:12-04:00
|
||||
Tags = []
|
||||
Categories = []
|
||||
draft = true
|
||||
|
||||
[menu.main]
|
||||
identifier = "blog"
|
||||
name = "Blog"
|
||||
weight = 30
|
||||
+++
|
||||
10
content/blog/a_short_history_of_Dane_Sabo.md
Normal file
10
content/blog/a_short_history_of_Dane_Sabo.md
Normal file
@ -0,0 +1,10 @@
|
||||
+++
|
||||
title = "A Short History About Me"
|
||||
date = "2025-03-20"
|
||||
+++
|
||||
|
||||
# The Early Years
|
||||
|
||||
# Undergrad
|
||||
|
||||
# Graduate School
|
||||
11
content/contact.md
Normal file
11
content/contact.md
Normal file
@ -0,0 +1,11 @@
|
||||
+++
|
||||
date = '2025-03-19T10:03:37-04:00'
|
||||
draft = true
|
||||
title = 'Contact'
|
||||
|
||||
[menu.main]
|
||||
name = 'About Me'
|
||||
weight = 90
|
||||
+++
|
||||
|
||||
Here is some test text.
|
||||
BIN
content/cv.pdf
Normal file
BIN
content/cv.pdf
Normal file
Binary file not shown.
9
content/projects/Formula_Student.md
Normal file
9
content/projects/Formula_Student.md
Normal file
@ -0,0 +1,9 @@
|
||||
+++
|
||||
date = '2025-03-20T16:51:04-04:00'
|
||||
draft = true
|
||||
title = 'Formula Student'
|
||||
|
||||
Categories = ["Extra Curricular"]
|
||||
+++
|
||||
|
||||
Bang here is some text!
|
||||
5
content/projects/Z/_index.md
Normal file
5
content/projects/Z/_index.md
Normal file
@ -0,0 +1,5 @@
|
||||
+++
|
||||
date = '2025-03-20T16:50:35-04:00'
|
||||
draft = true
|
||||
title = 'Z'
|
||||
+++
|
||||
13
content/projects/_index.md
Normal file
13
content/projects/_index.md
Normal file
@ -0,0 +1,13 @@
|
||||
+++
|
||||
date = '2025-03-19T10:24:03-04:00'
|
||||
draft = true
|
||||
Tags = []
|
||||
Categories = []
|
||||
title = 'Projects'
|
||||
|
||||
[menu.main]
|
||||
identifier = "projects"
|
||||
name = "Projects"
|
||||
weight = 20
|
||||
+++
|
||||
|
||||
BIN
content/transcript.pdf
Normal file
BIN
content/transcript.pdf
Normal file
Binary file not shown.
19
hugo.toml
19
hugo.toml
@ -2,3 +2,22 @@ baseURL = 'https://danesabo.com'
|
||||
languageCode = 'en-us'
|
||||
theme = "notrack"
|
||||
title = 'Dane Sabo'
|
||||
|
||||
[params]
|
||||
author = 'Dane Sabo'
|
||||
mainSections = ['CV', 'blog', 'projects']
|
||||
footer = """\
|
||||
This website was built using Hugo and the 'notrack' theme.\
|
||||
"""
|
||||
|
||||
[params.social]
|
||||
github = 'namelessfaceless'
|
||||
email = 'yourstruly@danesabo.com'
|
||||
|
||||
# This sets up the link to my cv:
|
||||
[[menu.main]]
|
||||
name = 'CV'
|
||||
weight = 8
|
||||
url = "/cv.pdf"
|
||||
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<title>Dane Sabo - 404 Page not found </title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/fontawesome.css">
|
||||
@ -10,16 +10,36 @@
|
||||
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="">
|
||||
<meta name="author" content="Dane Sabo">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<div class="myname">
|
||||
<h2><a href="https://danesabo.com/"></a></h2>
|
||||
<h2><a href="http://localhost:1313/">Dane Sabo</a></h2>
|
||||
</div>
|
||||
<nav>
|
||||
<ul class="navbar">
|
||||
<li class="">
|
||||
<a href="/cv.pdf">
|
||||
<span>CV</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/projects/">
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/blog/">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/contact/">
|
||||
<span>About Me</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
@ -29,7 +49,7 @@
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<span></span>
|
||||
<span>This website was built using Hugo and the 'notrack' theme.</span>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
BIN
public/CV.pdf
Normal file
BIN
public/CV.pdf
Normal file
Binary file not shown.
File diff suppressed because one or more lines are too long
1
public/ananke/css/main.min.css
vendored
1
public/ananke/css/main.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
73
public/blog/a_short_history_of_dane_sabo/index.html
Normal file
73
public/blog/a_short_history_of_dane_sabo/index.html
Normal file
@ -0,0 +1,73 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<title>Dane Sabo - A Short History About Me </title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/fontawesome.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.min.72d59454d0bbb10bc521b3b84f3d990767cb00ddf9f2555ea74ac9fcde5adcf3.css">
|
||||
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="Dane Sabo">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<div class="myname">
|
||||
<h2><a href="http://localhost:1313/">Dane Sabo</a></h2>
|
||||
</div>
|
||||
<nav>
|
||||
<ul class="navbar">
|
||||
<li class="">
|
||||
<a href="/cv.pdf">
|
||||
<span>CV</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/projects/">
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/blog/">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/contact/">
|
||||
<span>About Me</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<div id="content">
|
||||
<main>
|
||||
<article>
|
||||
|
||||
<h1 class="page-title blog">A Short History About Me</h1>
|
||||
|
||||
<p class="blog-post-info">Posted: <time>2025-03-20</time>
|
||||
|
||||
|
||||
|
||||
</p>
|
||||
|
||||
<div class="blog-post-content">
|
||||
<h1 id="the-early-years">The Early Years</h1>
|
||||
<h1 id="undergrad">Undergrad</h1>
|
||||
<h1 id="graduate-school">Graduate School</h1>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</article>
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<span>This website was built using Hugo and the 'notrack' theme.</span>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
128
public/blog/index.html
Normal file
128
public/blog/index.html
Normal file
@ -0,0 +1,128 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<title>Dane Sabo - Blog </title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/fontawesome.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.min.72d59454d0bbb10bc521b3b84f3d990767cb00ddf9f2555ea74ac9fcde5adcf3.css">
|
||||
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="Dane Sabo">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="alternate" type="application/rss+xml" href="http://localhost:1313/blog/index.xml" title="Dane Sabo" />
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<div class="myname">
|
||||
<h2><a href="http://localhost:1313/">Dane Sabo</a></h2>
|
||||
</div>
|
||||
<nav>
|
||||
<ul class="navbar">
|
||||
<li class="">
|
||||
<a href="/cv.pdf">
|
||||
<span>CV</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/projects/">
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="activetab">
|
||||
<a href="/blog/">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/contact/">
|
||||
<span>About Me</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<div id="content">
|
||||
<main>
|
||||
|
||||
<h1 class="page-title">Blog</h1>
|
||||
|
||||
|
||||
<div class="taxonomy-links">
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li><a href="/categories">categories</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="/tags">tags</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<article class="blog-post-summary">
|
||||
<h3 class="blog-post-title"><a href="http://localhost:1313/blog/a_short_history_of_dane_sabo/">A Short History About Me</a></h3>
|
||||
|
||||
<p class="blog-post-info">Posted: <time>2025-03-20</time>
|
||||
|
||||
|
||||
|
||||
</p>
|
||||
<p><h1 id="the-early-years">The Early Years</h1>
|
||||
<h1 id="undergrad">Undergrad</h1>
|
||||
<h1 id="graduate-school">Graduate School</h1><span> <a href="http://localhost:1313/blog/a_short_history_of_dane_sabo/">Read more...</a></span>
|
||||
</p>
|
||||
</article>
|
||||
<article class="blog-post-summary">
|
||||
<h3 class="blog-post-title"><a href="http://localhost:1313/blog/my-first-post/">My First Post</a></h3>
|
||||
|
||||
<p class="blog-post-info">Posted: <time>2025-03-16</time>
|
||||
|
||||
|
||||
|
||||
</p>
|
||||
<p><p>If you’re reading this (in a web browser), my web server is actually serving this content to you!
|
||||
Hell yeah!</p><span> <a href="http://localhost:1313/blog/my-first-post/">Read more...</a></span>
|
||||
</p>
|
||||
</article>
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<span>This website was built using Hugo and the 'notrack' theme.</span>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
70
public/blog/index.xml
Normal file
70
public/blog/index.xml
Normal file
@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Dane Sabo</title>
|
||||
<link>http://localhost:1313/blog/</link>
|
||||
<description>Latest blog posts from Dane Sabo</description>
|
||||
|
||||
|
||||
<language>en-us</language>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<lastBuildDate>Wed, 19 Mar 2025 08:55:12 -0400</lastBuildDate>
|
||||
|
||||
|
||||
|
||||
<atom:link href="http://localhost:1313/blog/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
|
||||
|
||||
<item>
|
||||
<title>Formula Student</title>
|
||||
<link>http://localhost:1313/projects/formula_student/</link>
|
||||
<pubDate>Thu, 20 Mar 2025 16:51:04 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/projects/formula_student/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>A Short History About Me</title>
|
||||
<link>http://localhost:1313/blog/a_short_history_of_dane_sabo/</link>
|
||||
<pubDate>Thu, 20 Mar 2025 00:00:00 +0000</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/a_short_history_of_dane_sabo/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>This Is a Secret</title>
|
||||
<link>http://localhost:1313/blog/this-is-a-secret/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 21:11:16 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/this-is-a-secret/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>My First Post</title>
|
||||
<link>http://localhost:1313/blog/my-first-post/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 20:49:57 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/my-first-post/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
72
public/blog/my-first-post/index.html
Normal file
72
public/blog/my-first-post/index.html
Normal file
@ -0,0 +1,72 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<title>Dane Sabo - My First Post </title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/fontawesome.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.min.72d59454d0bbb10bc521b3b84f3d990767cb00ddf9f2555ea74ac9fcde5adcf3.css">
|
||||
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="Dane Sabo">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<div class="myname">
|
||||
<h2><a href="http://localhost:1313/">Dane Sabo</a></h2>
|
||||
</div>
|
||||
<nav>
|
||||
<ul class="navbar">
|
||||
<li class="">
|
||||
<a href="/cv.pdf">
|
||||
<span>CV</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/projects/">
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/blog/">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/contact/">
|
||||
<span>About Me</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<div id="content">
|
||||
<main>
|
||||
<article>
|
||||
|
||||
<h1 class="page-title blog">My First Post</h1>
|
||||
|
||||
<p class="blog-post-info">Posted: <time>2025-03-16</time>
|
||||
|
||||
|
||||
|
||||
</p>
|
||||
|
||||
<div class="blog-post-content">
|
||||
<p>If you’re reading this (in a web browser), my web server is actually serving this content to you!
|
||||
Hell yeah!</p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</article>
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<span>This website was built using Hugo and the 'notrack' theme.</span>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
10
public/blog/page/1/index.html
Normal file
10
public/blog/page/1/index.html
Normal file
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<title>http://localhost:1313/blog/</title>
|
||||
<link rel="canonical" href="http://localhost:1313/blog/">
|
||||
<meta name="robots" content="noindex">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=http://localhost:1313/blog/">
|
||||
</head>
|
||||
</html>
|
||||
71
public/blog/this-is-a-secret/index.html
Normal file
71
public/blog/this-is-a-secret/index.html
Normal file
@ -0,0 +1,71 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<title>Dane Sabo - This Is a Secret </title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/fontawesome.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.min.72d59454d0bbb10bc521b3b84f3d990767cb00ddf9f2555ea74ac9fcde5adcf3.css">
|
||||
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="Dane Sabo">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<div class="myname">
|
||||
<h2><a href="http://localhost:1313/">Dane Sabo</a></h2>
|
||||
</div>
|
||||
<nav>
|
||||
<ul class="navbar">
|
||||
<li class="">
|
||||
<a href="/cv.pdf">
|
||||
<span>CV</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/projects/">
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/blog/">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/contact/">
|
||||
<span>About Me</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<div id="content">
|
||||
<main>
|
||||
<article>
|
||||
|
||||
<h1 class="page-title blog">This Is a Secret</h1>
|
||||
|
||||
<p class="blog-post-info">Posted: <time>2025-03-16</time>
|
||||
|
||||
|
||||
|
||||
</p>
|
||||
|
||||
<div class="blog-post-content">
|
||||
<p>This should not be served because draft is set to true.</p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</article>
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<span>This website was built using Hugo and the 'notrack' theme.</span>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
58
public/categories/extra-curricular/index.html
Normal file
58
public/categories/extra-curricular/index.html
Normal file
@ -0,0 +1,58 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<title>Dane Sabo - Extra Curricular </title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/fontawesome.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.min.72d59454d0bbb10bc521b3b84f3d990767cb00ddf9f2555ea74ac9fcde5adcf3.css">
|
||||
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="Dane Sabo">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="alternate" type="application/rss+xml" href="http://localhost:1313/categories/extra-curricular/index.xml" title="Dane Sabo" />
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<div class="myname">
|
||||
<h2><a href="http://localhost:1313/">Dane Sabo</a></h2>
|
||||
</div>
|
||||
<nav>
|
||||
<ul class="navbar">
|
||||
<li class="">
|
||||
<a href="/cv.pdf">
|
||||
<span>CV</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/projects/">
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/blog/">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/contact/">
|
||||
<span>About Me</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<div id="content">
|
||||
<main>
|
||||
<h1>Category: Extra Curricular</h1>
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<span>This website was built using Hugo and the 'notrack' theme.</span>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
70
public/categories/extra-curricular/index.xml
Normal file
70
public/categories/extra-curricular/index.xml
Normal file
@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Dane Sabo</title>
|
||||
<link>http://localhost:1313/categories/extra-curricular/</link>
|
||||
<description>Latest blog posts from Dane Sabo</description>
|
||||
|
||||
|
||||
<language>en-us</language>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<lastBuildDate>Thu, 20 Mar 2025 16:51:04 -0400</lastBuildDate>
|
||||
|
||||
|
||||
|
||||
<atom:link href="http://localhost:1313/categories/extra-curricular/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
|
||||
|
||||
<item>
|
||||
<title>Formula Student</title>
|
||||
<link>http://localhost:1313/projects/formula_student/</link>
|
||||
<pubDate>Thu, 20 Mar 2025 16:51:04 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/projects/formula_student/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>A Short History About Me</title>
|
||||
<link>http://localhost:1313/blog/a_short_history_of_dane_sabo/</link>
|
||||
<pubDate>Thu, 20 Mar 2025 00:00:00 +0000</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/a_short_history_of_dane_sabo/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>This Is a Secret</title>
|
||||
<link>http://localhost:1313/blog/this-is-a-secret/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 21:11:16 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/this-is-a-secret/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>My First Post</title>
|
||||
<link>http://localhost:1313/blog/my-first-post/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 20:49:57 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/my-first-post/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
10
public/categories/extra-curricular/page/1/index.html
Normal file
10
public/categories/extra-curricular/page/1/index.html
Normal file
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<title>http://localhost:1313/categories/extra-curricular/</title>
|
||||
<link rel="canonical" href="http://localhost:1313/categories/extra-curricular/">
|
||||
<meta name="robots" content="noindex">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=http://localhost:1313/categories/extra-curricular/">
|
||||
</head>
|
||||
</html>
|
||||
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<title>Dane Sabo - Categories </title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/fontawesome.css">
|
||||
@ -10,17 +10,37 @@
|
||||
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="">
|
||||
<meta name="author" content="Dane Sabo">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://danesabo.com/categories/index.xml" title="Dane Sabo" />
|
||||
<link rel="alternate" type="application/rss+xml" href="http://localhost:1313/categories/index.xml" title="Dane Sabo" />
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<div class="myname">
|
||||
<h2><a href="https://danesabo.com/"></a></h2>
|
||||
<h2><a href="http://localhost:1313/">Dane Sabo</a></h2>
|
||||
</div>
|
||||
<nav>
|
||||
<ul class="navbar">
|
||||
<li class="">
|
||||
<a href="/cv.pdf">
|
||||
<span>CV</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/projects/">
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/blog/">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/contact/">
|
||||
<span>About Me</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
@ -34,7 +54,7 @@
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<span></span>
|
||||
<span>This website was built using Hugo and the 'notrack' theme.</span>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Dane Sabo</title>
|
||||
<link>https://danesabo.com/categories/</link>
|
||||
<link>http://localhost:1313/categories/</link>
|
||||
<description>Latest blog posts from Dane Sabo</description>
|
||||
|
||||
|
||||
@ -16,19 +16,51 @@
|
||||
|
||||
|
||||
|
||||
<lastBuildDate>Thu, 20 Mar 2025 16:51:04 -0400</lastBuildDate>
|
||||
|
||||
|
||||
|
||||
<atom:link href="https://danesabo.com/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||
<atom:link href="http://localhost:1313/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
|
||||
|
||||
<item>
|
||||
<title>Formula Student</title>
|
||||
<link>http://localhost:1313/projects/formula_student/</link>
|
||||
<pubDate>Thu, 20 Mar 2025 16:51:04 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/projects/formula_student/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>A Short History About Me</title>
|
||||
<link>http://localhost:1313/blog/a_short_history_of_dane_sabo/</link>
|
||||
<pubDate>Thu, 20 Mar 2025 00:00:00 +0000</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/a_short_history_of_dane_sabo/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>This Is a Secret</title>
|
||||
<link>http://localhost:1313/blog/this-is-a-secret/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 21:11:16 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/this-is-a-secret/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>My First Post</title>
|
||||
<link>https://danesabo.com/posts/my-first-post/</link>
|
||||
<link>http://localhost:1313/blog/my-first-post/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 20:49:57 -0400</pubDate>
|
||||
|
||||
<guid>https://danesabo.com/posts/my-first-post/</guid>
|
||||
<guid>http://localhost:1313/blog/my-first-post/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
62
public/contact/index.html
Normal file
62
public/contact/index.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<title>Dane Sabo - Contact </title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/fontawesome.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.min.72d59454d0bbb10bc521b3b84f3d990767cb00ddf9f2555ea74ac9fcde5adcf3.css">
|
||||
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="Dane Sabo">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<div class="myname">
|
||||
<h2><a href="http://localhost:1313/">Dane Sabo</a></h2>
|
||||
</div>
|
||||
<nav>
|
||||
<ul class="navbar">
|
||||
<li class="">
|
||||
<a href="/cv.pdf">
|
||||
<span>CV</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/projects/">
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/blog/">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="activetab">
|
||||
<a href="/contact/">
|
||||
<span>About Me</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<div id="content">
|
||||
<main>
|
||||
<article>
|
||||
|
||||
<h1 class="page-title">Contact</h1>
|
||||
|
||||
<p>Here is some test text.</p>
|
||||
|
||||
|
||||
</article>
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<span>This website was built using Hugo and the 'notrack' theme.</span>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
BIN
public/cv.pdf
Normal file
BIN
public/cv.pdf
Normal file
Binary file not shown.
61
public/cv/index.html
Normal file
61
public/cv/index.html
Normal file
@ -0,0 +1,61 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<title>Dane Sabo - CV </title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/fontawesome.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.min.72d59454d0bbb10bc521b3b84f3d990767cb00ddf9f2555ea74ac9fcde5adcf3.css">
|
||||
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="Dane Sabo">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<div class="myname">
|
||||
<h2><a href="http://localhost:1313/">Dane Sabo</a></h2>
|
||||
</div>
|
||||
<nav>
|
||||
<ul class="navbar">
|
||||
<li class="activetab">
|
||||
<a href="CV.pdf">
|
||||
<span>CV</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/projects/">
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/blog/">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/contact/">
|
||||
<span>About Me</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<div id="content">
|
||||
<main>
|
||||
<article>
|
||||
|
||||
<h1 class="page-title">CV</h1>
|
||||
|
||||
|
||||
|
||||
</article>
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<span>This website was built using Hugo and the 'notrack' theme.</span>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,8 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta name="generator" content="Hugo 0.145.0">
|
||||
<title>Dane Sabo - Dane Sabo </title>
|
||||
<meta name="generator" content="Hugo 0.145.0"><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<title>Dane Sabo </title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/fontawesome.css">
|
||||
|
||||
@ -11,17 +11,37 @@
|
||||
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="">
|
||||
<meta name="author" content="Dane Sabo">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://danesabo.com/index.xml" title="Dane Sabo" />
|
||||
<link rel="alternate" type="application/rss+xml" href="http://localhost:1313/index.xml" title="Dane Sabo" />
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<div class="myname">
|
||||
<h2><a href="https://danesabo.com/"></a></h2>
|
||||
<h2><a href="http://localhost:1313/">Dane Sabo</a></h2>
|
||||
</div>
|
||||
<nav>
|
||||
<ul class="navbar">
|
||||
<li class="">
|
||||
<a href="/cv.pdf">
|
||||
<span>CV</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/projects/">
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/blog/">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/contact/">
|
||||
<span>About Me</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
@ -34,15 +54,43 @@
|
||||
|
||||
|
||||
|
||||
|
||||
<p>Huzzah! You’ve traveled to a new piece of the internet!</p>
|
||||
<p>This is my personal website. On it, you will find the following
|
||||
details:</p>
|
||||
<ol>
|
||||
<li>My <a href="CV.pdf">CV</a></li>
|
||||
<li>My current <a href="/projects/_index.md">Projects</a></li>
|
||||
<li><a href="/blog/_index.md">Blog posts</a> about what I’m currently working on</li>
|
||||
</ol>
|
||||
<p>If for any reason you would like to contact me, I am most easily
|
||||
reached at <a href="mailto:yourstruly@danesabo.com">yourstruly@danesabo.com</a>.</p>
|
||||
|
||||
|
||||
|
||||
|
||||
<p class="delimiter">♦ ♦ ♦</p>
|
||||
|
||||
|
||||
<h2 id="latest-blog-home">Latest Blog Posts</h2>
|
||||
|
||||
|
||||
|
||||
|
||||
<article class="blog-post-summary">
|
||||
<h3 class="blog-post-title"><a href="https://danesabo.com/posts/my-first-post/">My First Post</a></h3>
|
||||
<h3 class="blog-post-title"><a href="http://localhost:1313/blog/a_short_history_of_dane_sabo/">A Short History About Me</a></h3>
|
||||
|
||||
<p class="blog-post-info">Posted: <time>2025-03-20</time>
|
||||
|
||||
|
||||
|
||||
</p>
|
||||
<p><h1 id="the-early-years">The Early Years</h1>
|
||||
<h1 id="undergrad">Undergrad</h1>
|
||||
<h1 id="graduate-school">Graduate School</h1><span> <a href="http://localhost:1313/blog/a_short_history_of_dane_sabo/">Read more...</a></span>
|
||||
</p>
|
||||
</article>
|
||||
<article class="blog-post-summary">
|
||||
<h3 class="blog-post-title"><a href="http://localhost:1313/blog/my-first-post/">My First Post</a></h3>
|
||||
|
||||
<p class="blog-post-info">Posted: <time>2025-03-16</time>
|
||||
|
||||
@ -50,7 +98,7 @@
|
||||
|
||||
</p>
|
||||
<p><p>If you’re reading this (in a web browser), my web server is actually serving this content to you!
|
||||
Hell yeah!</p><span> <a href="https://danesabo.com/posts/my-first-post/">Read more...</a></span>
|
||||
Hell yeah!</p><span> <a href="http://localhost:1313/blog/my-first-post/">Read more...</a></span>
|
||||
</p>
|
||||
</article>
|
||||
|
||||
@ -60,7 +108,7 @@ Hell yeah!</p><span> <a href="https://danesabo.com/posts/my-first-post/">Read mo
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<span></span>
|
||||
<span>This website was built using Hugo and the 'notrack' theme.</span>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Dane Sabo</title>
|
||||
<link>https://danesabo.com/</link>
|
||||
<link>http://localhost:1313/</link>
|
||||
<description>Latest blog posts from Dane Sabo</description>
|
||||
|
||||
|
||||
@ -16,21 +16,51 @@
|
||||
|
||||
|
||||
|
||||
<lastBuildDate>Sun, 16 Mar 2025 21:11:16 -0400</lastBuildDate>
|
||||
<lastBuildDate>Wed, 19 Mar 2025 08:44:50 -0400</lastBuildDate>
|
||||
|
||||
|
||||
|
||||
<atom:link href="https://danesabo.com/index.xml" rel="self" type="application/rss+xml" />
|
||||
<atom:link href="http://localhost:1313/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
|
||||
|
||||
<item>
|
||||
<title>Formula Student</title>
|
||||
<link>http://localhost:1313/projects/formula_student/</link>
|
||||
<pubDate>Thu, 20 Mar 2025 16:51:04 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/projects/formula_student/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>A Short History About Me</title>
|
||||
<link>http://localhost:1313/blog/a_short_history_of_dane_sabo/</link>
|
||||
<pubDate>Thu, 20 Mar 2025 00:00:00 +0000</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/a_short_history_of_dane_sabo/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>This Is a Secret</title>
|
||||
<link>http://localhost:1313/blog/this-is-a-secret/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 21:11:16 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/this-is-a-secret/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>My First Post</title>
|
||||
<link>https://danesabo.com/posts/my-first-post/</link>
|
||||
<link>http://localhost:1313/blog/my-first-post/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 20:49:57 -0400</pubDate>
|
||||
|
||||
<guid>https://danesabo.com/posts/my-first-post/</guid>
|
||||
<guid>http://localhost:1313/blog/my-first-post/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<title>Dane Sabo - Posts </title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/fontawesome.css">
|
||||
@ -10,14 +10,14 @@
|
||||
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="">
|
||||
<meta name="author" content="Dane Sabo">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://danesabo.com/posts/index.xml" title="Dane Sabo" />
|
||||
<link rel="alternate" type="application/rss+xml" href="http://localhost:1313/posts/index.xml" title="Dane Sabo" />
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<div class="myname">
|
||||
<h2><a href="https://danesabo.com/"></a></h2>
|
||||
<h2><a href="http://localhost:1313/">Dane Sabo</a></h2>
|
||||
</div>
|
||||
<nav>
|
||||
<ul class="navbar">
|
||||
@ -45,6 +45,8 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -59,7 +61,7 @@
|
||||
</ul>
|
||||
</div>
|
||||
<article class="blog-post-summary">
|
||||
<h3 class="blog-post-title"><a href="https://danesabo.com/posts/my-first-post/">My First Post</a></h3>
|
||||
<h3 class="blog-post-title"><a href="http://localhost:1313/posts/my-first-post/">My First Post</a></h3>
|
||||
|
||||
<p class="blog-post-info">Posted: <time>2025-03-16</time>
|
||||
|
||||
@ -67,7 +69,7 @@
|
||||
|
||||
</p>
|
||||
<p><p>If you’re reading this (in a web browser), my web server is actually serving this content to you!
|
||||
Hell yeah!</p><span> <a href="https://danesabo.com/posts/my-first-post/">Read more...</a></span>
|
||||
Hell yeah!</p><span> <a href="http://localhost:1313/posts/my-first-post/">Read more...</a></span>
|
||||
</p>
|
||||
</article>
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Dane Sabo</title>
|
||||
<link>https://danesabo.com/posts/</link>
|
||||
<link>http://localhost:1313/posts/</link>
|
||||
<description>Latest blog posts from Dane Sabo</description>
|
||||
|
||||
|
||||
@ -20,17 +20,27 @@
|
||||
|
||||
|
||||
|
||||
<atom:link href="https://danesabo.com/posts/index.xml" rel="self" type="application/rss+xml" />
|
||||
<atom:link href="http://localhost:1313/posts/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
|
||||
|
||||
<item>
|
||||
<title>This Is a Secret</title>
|
||||
<link>http://localhost:1313/posts/this-is-a-secret/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 21:11:16 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/posts/this-is-a-secret/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>My First Post</title>
|
||||
<link>https://danesabo.com/posts/my-first-post/</link>
|
||||
<link>http://localhost:1313/posts/my-first-post/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 20:49:57 -0400</pubDate>
|
||||
|
||||
<guid>https://danesabo.com/posts/my-first-post/</guid>
|
||||
<guid>http://localhost:1313/posts/my-first-post/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<title>Dane Sabo - My First Post </title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/fontawesome.css">
|
||||
@ -10,13 +10,13 @@
|
||||
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="">
|
||||
<meta name="author" content="Dane Sabo">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<div class="myname">
|
||||
<h2><a href="https://danesabo.com/"></a></h2>
|
||||
<h2><a href="http://localhost:1313/">Dane Sabo</a></h2>
|
||||
</div>
|
||||
<nav>
|
||||
<ul class="navbar">
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<title>https://danesabo.com/posts/</title>
|
||||
<link rel="canonical" href="https://danesabo.com/posts/">
|
||||
<title>http://localhost:1313/posts/</title>
|
||||
<link rel="canonical" href="http://localhost:1313/posts/">
|
||||
<meta name="robots" content="noindex">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=https://danesabo.com/posts/">
|
||||
<meta http-equiv="refresh" content="0; url=http://localhost:1313/posts/">
|
||||
</head>
|
||||
</html>
|
||||
|
||||
@ -1,140 +1,51 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
|
||||
<title>This Is a Secret | Dane Sabo</title>
|
||||
<meta name="viewport" content="width=device-width,minimum-scale=1">
|
||||
<meta name="description" content="This should not be served because draft is set to true.">
|
||||
<meta name="generator" content="Hugo 0.145.0">
|
||||
<html>
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<title>Dane Sabo - This Is a Secret </title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/fontawesome.css">
|
||||
|
||||
|
||||
|
||||
<meta name="robots" content="index, follow">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.min.72d59454d0bbb10bc521b3b84f3d990767cb00ddf9f2555ea74ac9fcde5adcf3.css">
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="/ananke/css/main.min.d05fb5f317fcf33b3a52936399bdf6f47dc776516e1692e412ec7d76f4a5faa2.css" >
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="canonical" href="https://danesabo.com/posts/this-is-a-secret/">
|
||||
|
||||
|
||||
<meta property="og:url" content="https://danesabo.com/posts/this-is-a-secret/">
|
||||
<meta property="og:site_name" content="Dane Sabo">
|
||||
<meta property="og:title" content="This Is a Secret">
|
||||
<meta property="og:description" content="This should not be served because draft is set to true.">
|
||||
<meta property="og:locale" content="en_us">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="article:section" content="posts">
|
||||
<meta property="article:published_time" content="2025-03-16T21:11:16-04:00">
|
||||
<meta property="article:modified_time" content="2025-03-16T21:11:16-04:00">
|
||||
|
||||
<meta itemprop="name" content="This Is a Secret">
|
||||
<meta itemprop="description" content="This should not be served because draft is set to true.">
|
||||
<meta itemprop="datePublished" content="2025-03-16T21:11:16-04:00">
|
||||
<meta itemprop="dateModified" content="2025-03-16T21:11:16-04:00">
|
||||
<meta itemprop="wordCount" content="11">
|
||||
<meta name="twitter:card" content="summary">
|
||||
<meta name="twitter:title" content="This Is a Secret">
|
||||
<meta name="twitter:description" content="This should not be served because draft is set to true.">
|
||||
|
||||
|
||||
|
||||
|
||||
</head><body class="ma0 avenir bg-near-white production">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<header>
|
||||
<div class="bg-black">
|
||||
<nav class="pv3 ph3 ph4-ns" role="navigation">
|
||||
<div class="flex-l justify-between items-center center">
|
||||
<a href="/" class="f3 fw2 hover-white no-underline white-90 dib">
|
||||
|
||||
Dane Sabo
|
||||
|
||||
</a>
|
||||
<div class="flex-l items-center">
|
||||
|
||||
|
||||
|
||||
<div class="ananke-socials"></div>
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="Dane Sabo">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<div class="myname">
|
||||
<h2><a href="http://localhost:1313/">Dane Sabo</a></h2>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
</header>
|
||||
<nav>
|
||||
<ul class="navbar">
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<div id="content">
|
||||
<main>
|
||||
<article>
|
||||
|
||||
<h1 class="page-title blog">This Is a Secret</h1>
|
||||
|
||||
<p class="blog-post-info">Posted: <time>2025-03-16</time>
|
||||
|
||||
|
||||
|
||||
</p>
|
||||
|
||||
<main class="pb7" role="main">
|
||||
|
||||
|
||||
|
||||
<article class="flex-l flex-wrap justify-between mw8 center ph3">
|
||||
<header class="mt4 w-100">
|
||||
<aside class="instapaper_ignoref b helvetica tracked ttu">
|
||||
|
||||
Posts
|
||||
</aside><div id="sharing" class="mt3 ananke-socials"></div>
|
||||
<h1 class="f1 athelas mt3 mb1">This Is a Secret</h1>
|
||||
|
||||
|
||||
|
||||
<time class="f6 mv4 dib tracked" datetime="2025-03-16T21:11:16-04:00">March 16, 2025</time>
|
||||
|
||||
|
||||
|
||||
|
||||
</header>
|
||||
<div class="nested-copy-line-height lh-copy serif f4 nested-links mid-gray pr4-l w-two-thirds-l"><p>This should not be served because draft is set to true.</p>
|
||||
<ul class="pa0">
|
||||
|
||||
</ul>
|
||||
<div class="mt6 instapaper_ignoref">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<aside class="w-30-l mt6-l">
|
||||
|
||||
|
||||
|
||||
|
||||
</aside>
|
||||
|
||||
</article>
|
||||
<div class="blog-post-content">
|
||||
<p>This should not be served because draft is set to true.</p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</article>
|
||||
</main>
|
||||
<footer class="bg-black bottom-0 w-100 pa3" role="contentinfo">
|
||||
<div class="flex justify-between">
|
||||
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="https://danesabo.com/" >
|
||||
© Dane Sabo 2025
|
||||
</a>
|
||||
<div><div class="ananke-socials"></div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</div><footer>
|
||||
<span></span>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
78
public/projects/formula_student/index.html
Normal file
78
public/projects/formula_student/index.html
Normal file
@ -0,0 +1,78 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<title>Dane Sabo - Formula Student </title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/fontawesome.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.min.72d59454d0bbb10bc521b3b84f3d990767cb00ddf9f2555ea74ac9fcde5adcf3.css">
|
||||
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="Dane Sabo">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<div class="myname">
|
||||
<h2><a href="http://localhost:1313/">Dane Sabo</a></h2>
|
||||
</div>
|
||||
<nav>
|
||||
<ul class="navbar">
|
||||
<li class="">
|
||||
<a href="/cv.pdf">
|
||||
<span>CV</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/projects/">
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/blog/">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/contact/">
|
||||
<span>About Me</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<div id="content">
|
||||
<main>
|
||||
<article>
|
||||
|
||||
<h1 class="page-title blog">Formula Student</h1>
|
||||
|
||||
<p class="blog-post-info">Posted: <time>2025-03-20</time>
|
||||
|
||||
<span class="blog-taxonomy-info"> | Categories:
|
||||
|
||||
|
||||
|
||||
<a class="blog-taxonomy-info" href="/categories/extra-curricular">Extra Curricular</a>
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</p>
|
||||
|
||||
<div class="blog-post-content">
|
||||
<p>Bang here is some text!</p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</article>
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<span>This website was built using Hugo and the 'notrack' theme.</span>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
103
public/projects/index.html
Normal file
103
public/projects/index.html
Normal file
@ -0,0 +1,103 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<title>Dane Sabo - Projects </title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/fontawesome.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.min.72d59454d0bbb10bc521b3b84f3d990767cb00ddf9f2555ea74ac9fcde5adcf3.css">
|
||||
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="Dane Sabo">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="alternate" type="application/rss+xml" href="http://localhost:1313/projects/index.xml" title="Dane Sabo" />
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<div class="myname">
|
||||
<h2><a href="http://localhost:1313/">Dane Sabo</a></h2>
|
||||
</div>
|
||||
<nav>
|
||||
<ul class="navbar">
|
||||
<li class="">
|
||||
<a href="/cv.pdf">
|
||||
<span>CV</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="activetab">
|
||||
<a href="/projects/">
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/blog/">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/contact/">
|
||||
<span>About Me</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<div id="content">
|
||||
<main>
|
||||
|
||||
<h1 class="page-title">Projects</h1>
|
||||
|
||||
|
||||
<div class="taxonomy-links">
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li><a href="/categories">categories</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="/tags">tags</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<span>This website was built using Hugo and the 'notrack' theme.</span>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
70
public/projects/index.xml
Normal file
70
public/projects/index.xml
Normal file
@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Dane Sabo</title>
|
||||
<link>http://localhost:1313/projects/</link>
|
||||
<description>Latest blog posts from Dane Sabo</description>
|
||||
|
||||
|
||||
<language>en-us</language>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<lastBuildDate>Wed, 19 Mar 2025 10:24:03 -0400</lastBuildDate>
|
||||
|
||||
|
||||
|
||||
<atom:link href="http://localhost:1313/projects/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
|
||||
|
||||
<item>
|
||||
<title>Formula Student</title>
|
||||
<link>http://localhost:1313/projects/formula_student/</link>
|
||||
<pubDate>Thu, 20 Mar 2025 16:51:04 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/projects/formula_student/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>A Short History About Me</title>
|
||||
<link>http://localhost:1313/blog/a_short_history_of_dane_sabo/</link>
|
||||
<pubDate>Thu, 20 Mar 2025 00:00:00 +0000</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/a_short_history_of_dane_sabo/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>This Is a Secret</title>
|
||||
<link>http://localhost:1313/blog/this-is-a-secret/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 21:11:16 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/this-is-a-secret/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>My First Post</title>
|
||||
<link>http://localhost:1313/blog/my-first-post/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 20:49:57 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/my-first-post/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
10
public/projects/page/1/index.html
Normal file
10
public/projects/page/1/index.html
Normal file
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<title>http://localhost:1313/projects/</title>
|
||||
<link rel="canonical" href="http://localhost:1313/projects/">
|
||||
<meta name="robots" content="noindex">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=http://localhost:1313/projects/">
|
||||
</head>
|
||||
</html>
|
||||
101
public/projects/z/index.html
Normal file
101
public/projects/z/index.html
Normal file
@ -0,0 +1,101 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<title>Dane Sabo - Z </title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/fontawesome.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.min.72d59454d0bbb10bc521b3b84f3d990767cb00ddf9f2555ea74ac9fcde5adcf3.css">
|
||||
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="Dane Sabo">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="alternate" type="application/rss+xml" href="http://localhost:1313/projects/z/index.xml" title="Dane Sabo" />
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<div class="myname">
|
||||
<h2><a href="http://localhost:1313/">Dane Sabo</a></h2>
|
||||
</div>
|
||||
<nav>
|
||||
<ul class="navbar">
|
||||
<li class="">
|
||||
<a href="/cv.pdf">
|
||||
<span>CV</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/projects/">
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/blog/">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/contact/">
|
||||
<span>About Me</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<div id="content">
|
||||
<main>
|
||||
|
||||
<h1 class="page-title">Z</h1>
|
||||
|
||||
|
||||
<div class="taxonomy-links">
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li><a href="/categories">categories</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="/tags">tags</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<span>This website was built using Hugo and the 'notrack' theme.</span>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
70
public/projects/z/index.xml
Normal file
70
public/projects/z/index.xml
Normal file
@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Dane Sabo</title>
|
||||
<link>http://localhost:1313/projects/z/</link>
|
||||
<description>Latest blog posts from Dane Sabo</description>
|
||||
|
||||
|
||||
<language>en-us</language>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<lastBuildDate>Thu, 20 Mar 2025 16:50:35 -0400</lastBuildDate>
|
||||
|
||||
|
||||
|
||||
<atom:link href="http://localhost:1313/projects/z/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
|
||||
|
||||
<item>
|
||||
<title>Formula Student</title>
|
||||
<link>http://localhost:1313/projects/formula_student/</link>
|
||||
<pubDate>Thu, 20 Mar 2025 16:51:04 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/projects/formula_student/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>A Short History About Me</title>
|
||||
<link>http://localhost:1313/blog/a_short_history_of_dane_sabo/</link>
|
||||
<pubDate>Thu, 20 Mar 2025 00:00:00 +0000</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/a_short_history_of_dane_sabo/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>This Is a Secret</title>
|
||||
<link>http://localhost:1313/blog/this-is-a-secret/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 21:11:16 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/this-is-a-secret/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>My First Post</title>
|
||||
<link>http://localhost:1313/blog/my-first-post/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 20:49:57 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/my-first-post/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
@ -2,17 +2,39 @@
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||
<url>
|
||||
<loc>https://danesabo.com/</loc>
|
||||
<loc>http://localhost:1313/categories/</loc>
|
||||
<lastmod>2025-03-20T16:51:04-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/categories/extra-curricular/</loc>
|
||||
<lastmod>2025-03-20T16:51:04-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/projects/formula_student/</loc>
|
||||
<lastmod>2025-03-20T16:51:04-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/projects/z/</loc>
|
||||
<lastmod>2025-03-20T16:50:35-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/blog/a_short_history_of_dane_sabo/</loc>
|
||||
<lastmod>2025-03-20T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/projects/</loc>
|
||||
<lastmod>2025-03-19T10:24:03-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/contact/</loc>
|
||||
<lastmod>2025-03-19T10:03:37-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/blog/</loc>
|
||||
<lastmod>2025-03-19T08:55:12-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/</loc>
|
||||
<lastmod>2025-03-19T08:44:50-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/blog/this-is-a-secret/</loc>
|
||||
<lastmod>2025-03-16T21:11:16-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://danesabo.com/posts/</loc>
|
||||
<lastmod>2025-03-16T21:11:16-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://danesabo.com/posts/my-first-post/</loc>
|
||||
<loc>http://localhost:1313/blog/my-first-post/</loc>
|
||||
<lastmod>2025-03-16T20:49:57-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://danesabo.com/categories/</loc>
|
||||
</url><url>
|
||||
<loc>https://danesabo.com/tags/</loc>
|
||||
<loc>http://localhost:1313/tags/</loc>
|
||||
</url>
|
||||
</urlset>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<title>Dane Sabo - Tags </title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/fontawesome.css">
|
||||
@ -10,17 +10,37 @@
|
||||
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="">
|
||||
<meta name="author" content="Dane Sabo">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://danesabo.com/tags/index.xml" title="Dane Sabo" />
|
||||
<link rel="alternate" type="application/rss+xml" href="http://localhost:1313/tags/index.xml" title="Dane Sabo" />
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<div class="myname">
|
||||
<h2><a href="https://danesabo.com/"></a></h2>
|
||||
<h2><a href="http://localhost:1313/">Dane Sabo</a></h2>
|
||||
</div>
|
||||
<nav>
|
||||
<ul class="navbar">
|
||||
<li class="">
|
||||
<a href="/cv.pdf">
|
||||
<span>CV</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/projects/">
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/blog/">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/contact/">
|
||||
<span>About Me</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
@ -34,7 +54,7 @@
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<span></span>
|
||||
<span>This website was built using Hugo and the 'notrack' theme.</span>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Dane Sabo</title>
|
||||
<link>https://danesabo.com/tags/</link>
|
||||
<link>http://localhost:1313/tags/</link>
|
||||
<description>Latest blog posts from Dane Sabo</description>
|
||||
|
||||
|
||||
@ -18,17 +18,47 @@
|
||||
|
||||
|
||||
|
||||
<atom:link href="https://danesabo.com/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||
<atom:link href="http://localhost:1313/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
|
||||
|
||||
<item>
|
||||
<title>Formula Student</title>
|
||||
<link>http://localhost:1313/projects/formula_student/</link>
|
||||
<pubDate>Thu, 20 Mar 2025 16:51:04 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/projects/formula_student/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>A Short History About Me</title>
|
||||
<link>http://localhost:1313/blog/a_short_history_of_dane_sabo/</link>
|
||||
<pubDate>Thu, 20 Mar 2025 00:00:00 +0000</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/a_short_history_of_dane_sabo/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>This Is a Secret</title>
|
||||
<link>http://localhost:1313/blog/this-is-a-secret/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 21:11:16 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/this-is-a-secret/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>My First Post</title>
|
||||
<link>https://danesabo.com/posts/my-first-post/</link>
|
||||
<link>http://localhost:1313/blog/my-first-post/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 20:49:57 -0400</pubDate>
|
||||
|
||||
<guid>https://danesabo.com/posts/my-first-post/</guid>
|
||||
<guid>http://localhost:1313/blog/my-first-post/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
58
public/tags/v/index.html
Normal file
58
public/tags/v/index.html
Normal file
@ -0,0 +1,58 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<title>Dane Sabo - V </title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/fontawesome.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.min.72d59454d0bbb10bc521b3b84f3d990767cb00ddf9f2555ea74ac9fcde5adcf3.css">
|
||||
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="Dane Sabo">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="alternate" type="application/rss+xml" href="http://localhost:1313/tags/v/index.xml" title="Dane Sabo" />
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<div class="myname">
|
||||
<h2><a href="http://localhost:1313/">Dane Sabo</a></h2>
|
||||
</div>
|
||||
<nav>
|
||||
<ul class="navbar">
|
||||
<li class="">
|
||||
<a href="CV.pdf">
|
||||
<span>CV</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/projects/">
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/blog/">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/contact/">
|
||||
<span>About Me</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<div id="content">
|
||||
<main>
|
||||
<h1>Tag: V</h1>
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<span>This website was built using Hugo and the 'notrack' theme.</span>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
50
public/tags/v/index.xml
Normal file
50
public/tags/v/index.xml
Normal file
@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Dane Sabo</title>
|
||||
<link>http://localhost:1313/tags/v/</link>
|
||||
<description>Latest blog posts from Dane Sabo</description>
|
||||
|
||||
|
||||
<language>en-us</language>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<lastBuildDate>Wed, 19 Mar 2025 10:24:03 -0400</lastBuildDate>
|
||||
|
||||
|
||||
|
||||
<atom:link href="http://localhost:1313/tags/v/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
|
||||
|
||||
<item>
|
||||
<title>This Is a Secret</title>
|
||||
<link>http://localhost:1313/blog/this-is-a-secret/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 21:11:16 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/this-is-a-secret/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>My First Post</title>
|
||||
<link>http://localhost:1313/blog/my-first-post/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 20:49:57 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/my-first-post/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
10
public/tags/v/page/1/index.html
Normal file
10
public/tags/v/page/1/index.html
Normal file
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<title>http://localhost:1313/tags/v/</title>
|
||||
<link rel="canonical" href="http://localhost:1313/tags/v/">
|
||||
<meta name="robots" content="noindex">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=http://localhost:1313/tags/v/">
|
||||
</head>
|
||||
</html>
|
||||
58
public/tags/z/index.html
Normal file
58
public/tags/z/index.html
Normal file
@ -0,0 +1,58 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<title>Dane Sabo - Z </title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/fontawesome.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.min.72d59454d0bbb10bc521b3b84f3d990767cb00ddf9f2555ea74ac9fcde5adcf3.css">
|
||||
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="Dane Sabo">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="alternate" type="application/rss+xml" href="http://localhost:1313/tags/z/index.xml" title="Dane Sabo" />
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<div class="myname">
|
||||
<h2><a href="http://localhost:1313/">Dane Sabo</a></h2>
|
||||
</div>
|
||||
<nav>
|
||||
<ul class="navbar">
|
||||
<li class="">
|
||||
<a href="CV.pdf">
|
||||
<span>CV</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/projects/">
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/blog/">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="/contact/">
|
||||
<span>About Me</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<div id="content">
|
||||
<main>
|
||||
<h1>Tag: Z</h1>
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<span>This website was built using Hugo and the 'notrack' theme.</span>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
50
public/tags/z/index.xml
Normal file
50
public/tags/z/index.xml
Normal file
@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Dane Sabo</title>
|
||||
<link>http://localhost:1313/tags/z/</link>
|
||||
<description>Latest blog posts from Dane Sabo</description>
|
||||
|
||||
|
||||
<language>en-us</language>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<lastBuildDate>Wed, 19 Mar 2025 10:24:03 -0400</lastBuildDate>
|
||||
|
||||
|
||||
|
||||
<atom:link href="http://localhost:1313/tags/z/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
|
||||
|
||||
<item>
|
||||
<title>This Is a Secret</title>
|
||||
<link>http://localhost:1313/blog/this-is-a-secret/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 21:11:16 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/this-is-a-secret/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>My First Post</title>
|
||||
<link>http://localhost:1313/blog/my-first-post/</link>
|
||||
<pubDate>Sun, 16 Mar 2025 20:49:57 -0400</pubDate>
|
||||
|
||||
<guid>http://localhost:1313/blog/my-first-post/</guid>
|
||||
<description><!-- raw HTML omitted -->
|
||||
</description>
|
||||
</item>
|
||||
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
10
public/tags/z/page/1/index.html
Normal file
10
public/tags/z/page/1/index.html
Normal file
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<title>http://localhost:1313/tags/z/</title>
|
||||
<link rel="canonical" href="http://localhost:1313/tags/z/">
|
||||
<meta name="robots" content="noindex">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=http://localhost:1313/tags/z/">
|
||||
</head>
|
||||
</html>
|
||||
BIN
public/transcript.pdf
Normal file
BIN
public/transcript.pdf
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user