-
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.
Updating to no js and very little css
- Loading branch information
Showing
23 changed files
with
155 additions
and
3,605 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 |
---|---|---|
|
@@ -18,92 +18,6 @@ domain: "kyleboon.org" # if you want to force HTTPS, specify the domain wi | |
url: "https://www.kyleboon.org" # the base hostname and protocol for your site, e.g. http://example.com | ||
baseurl: "" # place folder name if the site is served in a subfolder | ||
|
||
# --- Navigation bar options --- # | ||
|
||
# List of links in the navigation bar | ||
navbar-links: | ||
About Me: "aboutme" | ||
Talks: "talks" | ||
|
||
# Image to show in the navigation bar - image must be a square (width = height) | ||
# Remove this parameter if you don't want an image in the navbar | ||
avatar: "/img/kyleboon.png" | ||
|
||
# If you want to have an image logo in the top-left corner instead of the title text, | ||
# then specify the following parameter | ||
# title-img: /path/to/image | ||
|
||
# --- Background colour/image options --- # | ||
|
||
# Personalize the colors in your website. Colour values can be any valid CSS colour | ||
|
||
navbar-col: "#F5F5F5" | ||
navbar-text-col: "#404040" | ||
navbar-children-col: "#F5F5F5" | ||
page-col: "#FFFFFF" | ||
link-col: "#008AFF" | ||
hover-col: "#0085A1" | ||
footer-col: "#F5F5F5" | ||
footer-text-col: "#777777" | ||
footer-link-col: "#404040" | ||
|
||
# Alternatively, the navbar, footer, and page background can be set to use background images | ||
# instead of colour | ||
|
||
# navbar-img: "/img/bgimage.png" | ||
# footer-img: "/img/bgimage.png" | ||
# page-img: "/img/bgimage.png" | ||
|
||
# --- Footer options --- # | ||
|
||
# Change all these values or delete the ones you don't want. | ||
# Important: you must keep the "name" parameter, everything else you can remove | ||
author: | ||
name: Kyle Boon | ||
|
||
# Select your active Social Network Links. | ||
# Uncomment the links you want to show in the footer and add your information to each link. | ||
# You can reorder the items to define the link order. | ||
# If you want to add a new link that isn't here, you'll need to also edit the file _data/SocialNetworks.yml | ||
social-network-links: | ||
rss: true | ||
email: "[email protected]" | ||
facebook: kyleboon | ||
github: kyleboon | ||
# reddit: yourname | ||
# linkedin: daattali | ||
# xing: yourname | ||
stackoverflow: "1486/kyle-boon" | ||
# snapchat: deanat78 | ||
instagram: kyle.boon | ||
# youtube: user/deanat78 | ||
# spotify: yourname | ||
# telephone: +14159998888 | ||
# steam: deanat78 | ||
# twitch: yourname | ||
# yelp: yourname | ||
|
||
# Select which share links to show in posts | ||
share-links-active: | ||
twitter: true | ||
facebook: true | ||
linkedin: true | ||
|
||
# How to display the link to the website in the footer | ||
# Remove this if you don't want a link in the footer | ||
url-pretty: "kyleboon.com" # eg. "deanattali.com/beautiful-jekyll" | ||
|
||
# Fill in your Google Analytics gtag.js ID to track your website using gtag | ||
#gtag: "" | ||
|
||
# Fill in your Google Analytics ID to track your website using GA | ||
google_analytics: "UA-42068604-1" | ||
|
||
# Google Tag Manager ID | ||
#gtm: "" | ||
|
||
# Fill in your Disqus shortname (NOT the userid) if you want to support Disqus comments | ||
disqus: "kyleboon" | ||
|
||
# Excerpt Word Length | ||
# Truncates the excerpt to the specified number of words on the index page | ||
|
@@ -118,14 +32,9 @@ date_format: "%B %-d, %Y" | |
|
||
# Output options (more information on Jekyll's site) | ||
timezone: "America/Chicago" | ||
markdown: kramdown | ||
highlighter: rouge | ||
permalink: /blog/:year/:month/:day/:title/ | ||
paginate: 5 | ||
|
||
kramdown: | ||
input: GFM | ||
|
||
# Default YAML values (more information on Jekyll's site) | ||
defaults: | ||
- | ||
|
@@ -155,5 +64,4 @@ exclude: | |
- README.md | ||
|
||
plugins: | ||
- jekyll-paginate | ||
- jekyll-sitemap |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<footer> © 2023 Kyle Boon | <a href="mailto:[email protected]">E-mail</a> | <a href="/atom.xml">RSS</a> </footer> |
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 @@ | ||
<link rel="stylesheet" href="/css/main.css"> |
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,35 +1,20 @@ | ||
--- | ||
common-css: | ||
- "/css/bootstrap.min.css" | ||
- "/css/bootstrap-social.css" | ||
- "/css/main.css" | ||
common-ext-css: | ||
- "//maxcdn.bootstrapcdn.com/font-awesome/4.6.0/css/font-awesome.min.css" | ||
common-googlefonts: | ||
- "Lora:400,700,400italic,700italic" | ||
- "Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" | ||
common-js: | ||
- "/js/jquery-1.11.2.min.js" | ||
- "/js/bootstrap.min.js" | ||
- "/js/main.js" | ||
--- | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<!-- Beautiful Jekyll | MIT license | Copyright Dean Attali 2016 --> | ||
{% include head.html %} | ||
|
||
<a class="sr-only" href="#maincontent">Skip to content</a> | ||
<nav> | ||
<div class="title"> | ||
<a href="/">Kyle Boon</a> | ||
</div> | ||
<a href="/aboutme">About</a> | ||
<a href="/blog">Blog</a> | ||
</nav> | ||
<body> | ||
|
||
{% include gtm_body.html %} | ||
|
||
{% include nav.html %} | ||
|
||
{{ content }} | ||
|
||
{% include footer.html %} | ||
|
||
{% include footer-scripts.html %} | ||
|
||
</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 |
---|---|---|
|
@@ -2,8 +2,3 @@ | |
layout: base | ||
--- | ||
|
||
<div class="intro-header"></div> | ||
|
||
<div role="main" class="container"> | ||
{{ content }} | ||
</div> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,6 @@ | ||
--- | ||
layout: base | ||
--- | ||
|
||
{% include header.html type="page" %} | ||
|
||
<div class="container" role="main"> | ||
<div class="row"> | ||
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> | ||
{{ content }} | ||
{% if page.comments %} | ||
<div class="disqus-comments"> | ||
{% include disqus.html %} | ||
</div> | ||
{% include fb-comment.html %} | ||
<div class="justcomments-comments"> | ||
{% include just_comments.html %} | ||
</div> | ||
{% endif %} | ||
</div> | ||
</div> | ||
<div class="maincontent"> | ||
{{ content }} | ||
</div> |
Oops, something went wrong.