-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
145 additions
and
85 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 |
---|---|---|
|
@@ -15,6 +15,6 @@ sidebar_links = [ | |
{url = "https://github.com/knzai", name = "GitHub"}, | ||
{url = "https://www.linkedin.com/in/knzai/", name = "LinkedIn"}, | ||
{url = "mailto:[email protected]", name = "[email protected]"}, | ||
{url = "resume.pdf", name = "resume.pdf"}, | ||
{url = "Kenzi Connor Resume.pdf", name = "resume.pdf"}, | ||
] | ||
sidebar_sticky = true |
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,7 +1,6 @@ | ||
+++ | ||
title = "Resume" | ||
template = "embed.html" | ||
class="test" | ||
[extra] | ||
url = "https://docs.google.com/document/d/e/2PACX-1vR8phRROytFLb3Wv6k5mcsxlP0mcK7qirq7z0HMpFY9ik0Tr6rpM7U2vptDdSENkgsqCpBmXw7VT1lo/pub?embedded=true" | ||
+++ |
Binary file not shown.
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,4 +1,4 @@ | ||
{% extends "index.html" %} | ||
{% extends "base.html" %} | ||
|
||
{% block content %} | ||
<div class="post"> | ||
|
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,59 @@ | ||
<!DOCTYPE html> | ||
<html lang="{{ lang }}"> | ||
<head> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||
|
||
<!-- Enable responsiveness on mobile devices--> | ||
<!-- viewport-fit=cover is to support iPhone X rounded corners and notch in landscape--> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, viewport-fit=cover"> | ||
|
||
<title>{% block title %}{{ config.title }}{% endblock title %}</title> | ||
|
||
<!-- CSS --> | ||
<link rel="stylesheet" href="{{ get_url(path="print.css", trailing_slash=false) }}" media="print"> | ||
<link rel="stylesheet" href="{{ get_url(path="poole.css", trailing_slash=false) }}"> | ||
<link rel="stylesheet" href="{{ get_url(path="hyde.css", trailing_slash=false) }}"> | ||
<link rel="stylesheet" href="{{ get_url(path="styles.css", trailing_slash=false) }}"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface"> | ||
|
||
{% if config.generate_feed %} | ||
<link rel="alternate" type={% if config.feed_filename == "atom.xml" %}"application/atom+xml"{% else %}"application/rss+xml"{% endif %} title="RSS" href="{{ get_url(path=config.feed_filename) | safe }}"> | ||
{% endif %} | ||
|
||
{% block extra_head %} | ||
{% endblock extra_head %} | ||
</head> | ||
|
||
<body class="{{ config.extra.color_theme }} {% if config.extra.sidebar_reverse %}layout-reverse{% endif %}"> | ||
{% block sidebar %} | ||
<div class="sidebar"> | ||
<div class="container {% if config.extra.sidebar_sticky %}sidebar-sticky{% endif %}"> | ||
<div class="sidebar-about"> | ||
{% block sidebar_about %} | ||
<a href="{{ config.base_url }}"><h1>{{ config.title }}</h1></a> | ||
{% if config.description %} | ||
<p class="lead">{{config.description}}</p> | ||
{% endif %} | ||
{% endblock sidebar_about %} | ||
</div> | ||
|
||
<ul class="sidebar-nav"> | ||
{% block sidebar_nav %} | ||
{% for link in config.extra.sidebar_links %} | ||
<li class="sidebar-nav-item"><a href="{{link.url}}">{{link.name}}</a></li> | ||
{% endfor %} | ||
{% endblock sidebar_nav %} | ||
</ul> | ||
</div> | ||
</div> | ||
{% endblock sidebar %} | ||
|
||
<div class="content container"> | ||
{% block content %} | ||
{% endblock content %} | ||
</div> | ||
|
||
</body> | ||
|
||
</html> |
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 |
---|---|---|
@@ -1,78 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="{{ lang }}"> | ||
<head> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||
|
||
<!-- Enable responsiveness on mobile devices--> | ||
<!-- viewport-fit=cover is to support iPhone X rounded corners and notch in landscape--> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, viewport-fit=cover"> | ||
|
||
<title>{% block title %}{{ config.title }}{% endblock title %}</title> | ||
|
||
<!-- CSS --> | ||
<link rel="stylesheet" href="{{ get_url(path="print.css", trailing_slash=false) }}" media="print"> | ||
<link rel="stylesheet" href="{{ get_url(path="poole.css", trailing_slash=false) }}"> | ||
<link rel="stylesheet" href="{{ get_url(path="hyde.css", trailing_slash=false) }}"> | ||
<link rel="stylesheet" href="{{ get_url(path="styles.css", trailing_slash=false) }}"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface"> | ||
|
||
{% if config.generate_feed %} | ||
<link rel="alternate" type={% if config.feed_filename == "atom.xml" %}"application/atom+xml"{% else %}"application/rss+xml"{% endif %} title="RSS" href="{{ get_url(path=config.feed_filename) | safe }}"> | ||
{% endif %} | ||
|
||
{% block extra_head %} | ||
{% endblock extra_head %} | ||
</head> | ||
|
||
<body class="{{ config.extra.color_theme }} {% if config.extra.sidebar_reverse %}layout-reverse{% endif %}"> | ||
{% block sidebar %} | ||
<div class="sidebar"> | ||
<div class="container {% if config.extra.sidebar_sticky %}sidebar-sticky{% endif %}"> | ||
<div class="sidebar-about"> | ||
{% block sidebar_about %} | ||
<a href="{{ config.base_url }}"><h1>{{ config.title }}</h1></a> | ||
{% if config.description %} | ||
<p class="lead">{{config.description}}</p> | ||
{% endif %} | ||
{% endblock sidebar_about %} | ||
</div> | ||
|
||
<ul class="sidebar-nav"> | ||
{% block sidebar_nav %} | ||
{% for link in config.extra.sidebar_links %} | ||
<li class="sidebar-nav-item"><a href="{{link.url}}">{{link.name}}</a></li> | ||
{% endfor %} | ||
{% endblock sidebar_nav %} | ||
</ul> | ||
</div> | ||
</div> | ||
{% endblock sidebar %} | ||
|
||
<div class="content container"> | ||
{% block content %} | ||
<div class="posts"> | ||
{% for page in section.pages | reverse %} | ||
<div class="post"> | ||
<h1 class="post-title"> | ||
<a href="{{ page.permalink }}"> | ||
{{ page.title | safe }} | ||
</a> | ||
</h1> | ||
{% if page.date %} | ||
<span class="post-date">{{ page.date | date(format="%Y-%m-%d") }}</span> | ||
{% endif %} | ||
{{ page.summary | safe }} | ||
|
||
|
||
|
||
|
||
</div> | ||
{% endfor %} | ||
</div> | ||
{% endblock content %} | ||
</div> | ||
|
||
</body> | ||
|
||
</html> | ||
{% extends "base.html" %} | ||
|
||
{% block content %} | ||
<div class="posts"> | ||
{% for page in section.pages | reverse %} | ||
<div class="post"> | ||
<h1 class="post-title"> | ||
<a href="{{ page.permalink }}"> | ||
{{ page.title | safe }} | ||
</a> | ||
</h1> | ||
{% if page.date %} | ||
<span class="post-date">{{ page.date | date(format="%Y-%m-%d") }}</span> | ||
{% endif %} | ||
{{ page.summary | safe }} | ||
|
||
|
||
|
||
|
||
</div> | ||
{% endfor %} | ||
</div> | ||
{% 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,58 @@ | ||
<!DOCTYPE html> | ||
<html lang="{{ lang }}"> | ||
<head> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||
|
||
<!-- Enable responsiveness on mobile devices--> | ||
<!-- viewport-fit=cover is to support iPhone X rounded corners and notch in landscape--> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, viewport-fit=cover"> | ||
|
||
<title>{% block title %}{{ config.title }}{% endblock title %}</title> | ||
|
||
<!-- CSS --> | ||
<link rel="stylesheet" href="{{ get_url(path="print.css", trailing_slash=false) }}" media="print"> | ||
<link rel="stylesheet" href="{{ get_url(path="poole.css", trailing_slash=false) }}"> | ||
<link rel="stylesheet" href="{{ get_url(path="hyde.css", trailing_slash=false) }}"> | ||
<link rel="stylesheet" href="{{ get_url(path="styles.css", trailing_slash=false) }}"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface"> | ||
|
||
{% if config.generate_feed %} | ||
<link rel="alternate" type={% if config.feed_filename == "atom.xml" %}"application/atom+xml"{% else %}"application/rss+xml"{% endif %} title="RSS" href="{{ get_url(path=config.feed_filename) | safe }}"> | ||
{% endif %} | ||
|
||
{% block extra_head %} | ||
{% endblock extra_head %} | ||
</head> | ||
|
||
<body class="{{ config.extra.color_theme }} {% if config.extra.sidebar_reverse %}layout-reverse{% endif %}"> | ||
{% block sidebar %} | ||
<div class="sidebar"> | ||
<div class="container {% if config.extra.sidebar_sticky %}sidebar-sticky{% endif %}"> | ||
<div class="sidebar-about"> | ||
{% block sidebar_about %} | ||
<a href="{{ config.base_url }}"><h1>{{ config.title }}</h1></a> | ||
{% if config.description %} | ||
<p class="lead">{{config.description}}</p> | ||
{% endif %} | ||
{% endblock sidebar_about %} | ||
</div> | ||
|
||
<ul class="sidebar-nav"> | ||
{% block sidebar_nav %} | ||
{% for link in config.extra.sidebar_links %} | ||
<li class="sidebar-nav-item"><a href="{{link.url}}">{{link.name}}</a></li> | ||
{% endfor %} | ||
{% endblock sidebar_nav %} | ||
</ul> | ||
</div> | ||
</div> | ||
{% endblock sidebar %} | ||
|
||
<div class="content container"> | ||
|
||
</div> | ||
|
||
</body> | ||
|
||
</html> |
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,4 +1,4 @@ | ||
{% extends "index.html" %} | ||
{% extends "base.html" %} | ||
|
||
{% block content %} | ||
<div class="post"> | ||
|