First commit

master
Tait Hoyem 4 years ago
parent d3ed361eb7
commit ee0d0eb9c8

@ -0,0 +1,16 @@
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
gem "jekyll"
group :jekyll_plugins do
gem 'jekyll-sitemap'
gem 'jekyll-feed'
gem 'jekyll-seo-tag'
gem 'jekyll-admin'
end
# gem "rails"

@ -0,0 +1,113 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.7.0)
public_suffix (>= 2.0.2, < 5.0)
backports (3.15.0)
colorator (1.1.0)
concurrent-ruby (1.1.5)
cssminify2 (2.0.1)
em-websocket (0.5.1)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0.6.0)
eventmachine (1.2.7)
execjs (2.7.0)
ffi (1.12.1)
forwardable-extended (2.6.0)
htmlcompressor (0.4.0)
http_parser.rb (0.6.0)
i18n (1.8.2)
concurrent-ruby (~> 1.0)
jekyll (4.0.0)
addressable (~> 2.4)
colorator (~> 1.0)
em-websocket (~> 0.5)
i18n (>= 0.9.5, < 2)
jekyll-sass-converter (~> 2.0)
jekyll-watch (~> 2.0)
kramdown (~> 2.1)
kramdown-parser-gfm (~> 1.0)
liquid (~> 4.0)
mercenary (~> 0.3.3)
pathutil (~> 0.9)
rouge (~> 3.0)
safe_yaml (~> 1.0)
terminal-table (~> 1.8)
jekyll-admin (0.9.0)
jekyll (>= 3.3, < 5.0)
sinatra (~> 1.4)
sinatra-contrib (~> 1.4)
jekyll-feed (0.13.0)
jekyll (>= 3.7, < 5.0)
jekyll-minifier (0.1.10)
cssminify2 (~> 2.0)
htmlcompressor (~> 0.4)
jekyll (>= 3.5)
json-minify (~> 0.0.3)
uglifier (~> 4.1)
jekyll-sass-converter (2.0.1)
sassc (> 2.0.1, < 3.0)
jekyll-seo-tag (2.6.1)
jekyll (>= 3.3, < 5.0)
jekyll-sitemap (1.4.0)
jekyll (>= 3.7, < 5.0)
jekyll-watch (2.2.1)
listen (~> 3.0)
json (2.3.0)
json-minify (0.0.3)
json (> 0)
kramdown (2.1.0)
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
liquid (4.0.3)
listen (3.2.1)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
mercenary (0.3.6)
multi_json (1.14.1)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (4.0.3)
rack (1.6.12)
rack-protection (1.5.5)
rack
rack-test (1.1.0)
rack (>= 1.0, < 3)
rb-fsevent (0.10.3)
rb-inotify (0.10.1)
ffi (~> 1.0)
rouge (3.15.0)
safe_yaml (1.0.5)
sassc (2.2.1)
ffi (~> 1.9)
sinatra (1.4.8)
rack (~> 1.5)
rack-protection (~> 1.4)
tilt (>= 1.3, < 3)
sinatra-contrib (1.4.7)
backports (>= 2.0)
multi_json
rack-protection
rack-test
sinatra (~> 1.4.0)
tilt (>= 1.3, < 3)
terminal-table (1.8.0)
unicode-display_width (~> 1.1, >= 1.1.1)
tilt (2.0.10)
uglifier (4.2.0)
execjs (>= 0.3.0, < 3)
unicode-display_width (1.6.1)
PLATFORMS
ruby
DEPENDENCIES
jekyll
jekyll-admin
jekyll-feed
jekyll-minifier
jekyll-seo-tag
jekyll-sitemap
BUNDLED WITH
2.1.4

@ -0,0 +1,8 @@
- label: Personal Email
value: tait.hoyem@protonmail.com
- label: Work Email
value: tait@tait.tech
- label: School Email
value: tait.hoyem@edu.sait.ca
- label: Phone
value: +1 (403) 771-4754

@ -0,0 +1,6 @@
- name: Home
link: /
- name: Blog
link: /blog.html
- name: Code
link: https://github.com/TTWNO/

@ -0,0 +1,4 @@
{% for item in site.data.contact %}
<div>{{ item.label }} - {{ item.value }}</div>
<br>
{% endfor %}

@ -0,0 +1,5 @@
<nav>
{% for item in site.data.nav %}
<a href="{{ item.link }}">{{ item.name }}</a>
{% endfor %}
</nav>

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="/assets/css/style.css">
</head>
<body>
{% include nav.html %}
{{ content }}
</body>
</html>

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="/assets/css/style.css">
</head>
<body>
{{ content }}
{% include nav.html %}
</body>
</html>

@ -0,0 +1,7 @@
---
layout: default
---
<h1>{{ page.title }}</h1>
<p>{{ page.date | date_to_string }} - {{ page.author }}</p>
{{ content }}

@ -0,0 +1,13 @@
---
layout: post
author: jill
title: (For Testing Purposes) Bananas
---
A banana is an edible fruit botanically a berry produced by several kinds
of large herbaceous flowering plants in the genus Musa.
In some countries, bananas used for cooking may be called "plantains",
distinguishing them from dessert bananas. The fruit is variable in size, color,
and firmness, but is usually elongated and curved, with soft flesh rich in
starch covered with a rind, which may be green, yellow, red, purple, or brown
when ripe.

@ -0,0 +1,48 @@
$normal-text-color: #111;
$nav-link-color: #333;
$nav-link-hover-color: black;
$link-color: #444;
body {
color: $normal-text-color;
font-family: arial;
padding: 15px;
margin: auto;
width: 600px;
}
h1 {
font-family: helvetica, arial, sans-serif;
font-size: 1.5em;
}
a {
text-decoration: none;
color: $link-color;
}
nav {
padding: 0px;
margin: 0px;
}
nav > a:first-of-type {
padding-left: 0;
}
nav > a {
padding: 10px;
color: $nav-link-color;
font-weight: bold;
font-family: helvetica, arial, sans-serif;
}
nav > a:hover {
text-decoration: underline;
}
#main-img {
width: 100%;
}
p {
line-height: 1.4em;
}
p.line-under {
padding-bottom: 15px;
border-bottom: 2px solid #888;
}

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>(For Testing Purposes) Bananas</title>
<link rel="stylesheet" href="/assets/css/style.css">
</head>
<body>
<nav>
<a href="/">Home</a>
<a href="/blog.html">Blog</a>
<a href="https://github.com/TTWNO/">Code</a>
</nav>
<h1>(For Testing Purposes) Bananas</h1>
<p>01 Jan 2020 - jill</p>
<p>A banana is an edible fruit botanically a berry produced by several kinds
of large herbaceous flowering plants in the genus Musa.</p>
<p>In some countries, bananas used for cooking may be called “plantains”,
distinguishing them from dessert bananas. The fruit is variable in size, color,
and firmness, but is usually elongated and curved, with soft flesh rich in
starch covered with a rind, which may be green, yellow, red, purple, or brown
when ripe.</p>
</body>
</html>

@ -0,0 +1,21 @@
body { color: #111; font-family: arial; padding: 15px; margin: auto; width: 600px; }
h1 { font-family: helvetica, arial, sans-serif; font-size: 1.5em; }
a { text-decoration: none; color: #444; }
nav { padding: 0px; margin: 0px; }
nav > a:first-of-type { padding-left: 0; }
nav > a { padding: 10px; color: #333; font-weight: bold; font-family: helvetica, arial, sans-serif; }
nav > a:hover { text-decoration: underline; }
#main-img { width: 100%; }
p { line-height: 1.4em; }
p.line-under { padding-bottom: 15px; border-bottom: 2px solid #888; }
/*# sourceMappingURL=style.css.map */

@ -0,0 +1,14 @@
{
"version": 3,
"file": "style.css",
"sources": [
"style.scss",
"_sass/main.scss"
],
"sourcesContent": [
"@import \"main\";\n",
"$normal-text-color: #111;\n$nav-link-color: #333;\n$nav-link-hover-color: black;\n$link-color: #444;\n\nbody {\n color: $normal-text-color;\n font-family: arial;\n padding: 15px;\n margin: auto;\n width: 600px;\n}\nh1 {\n font-family: helvetica, arial, sans-serif;\n font-size: 1.5em;\n}\na {\n text-decoration: none;\n color: $link-color;\n}\n\nnav {\n padding: 0px;\n margin: 0px;\n}\nnav > a:first-of-type {\n padding-left: 0;\n}\nnav > a {\n padding: 10px;\n color: $nav-link-color;\n font-weight: bold;\n font-family: helvetica, arial, sans-serif;\n}\nnav > a:hover {\n text-decoration: underline; \n}\n\n#main-img {\n width: 100%;\n}\np {\n line-height: 1.4em;\n}\np.line-under {\n padding-bottom: 15px;\n border-bottom: 2px solid #888;\n}\n"
],
"names": [],
"mappings": "ACKA,AAAA,IAAI,CAAC,EACH,KAAK,EANa,IAAI,EAOtB,WAAW,EAAE,KAAK,EAClB,OAAO,EAAE,IAAI,EACb,MAAM,EAAE,IAAI,EACZ,KAAK,EAAE,KAAK,GACb;;AACD,AAAA,EAAE,CAAC,EACD,WAAW,EAAE,4BAA4B,EACzC,SAAS,EAAE,KAAK,GACjB;;AACD,AAAA,CAAC,CAAC,EACA,eAAe,EAAE,IAAI,EACrB,KAAK,EAfM,IAAI,GAgBhB;;AAED,AAAA,GAAG,CAAC,EACF,OAAO,EAAE,GAAG,EACZ,MAAM,EAAE,GAAG,GACZ;;AACD,AAAA,GAAG,GAAG,CAAC,AAAA,cAAc,CAAC,EACpB,YAAY,EAAE,CAAC,GAChB;;AACD,AAAA,GAAG,GAAG,CAAC,CAAC,EACN,OAAO,EAAE,IAAI,EACb,KAAK,EA7BU,IAAI,EA8BnB,WAAW,EAAE,IAAI,EACjB,WAAW,EAAE,4BAA4B,GAC1C;;AACD,AAAA,GAAG,GAAG,CAAC,AAAA,MAAM,CAAC,EACZ,eAAe,EAAE,SAAS,GAC3B;;AAED,AAAA,SAAS,CAAC,EACR,KAAK,EAAE,IAAI,GACZ;;AACD,AAAA,CAAC,CAAC,EACA,WAAW,EAAE,KAAK,GACnB;;AACD,AAAA,CAAC,AAAA,WAAW,CAAC,EACX,cAAc,EAAE,IAAI,EACpB,aAAa,EAAE,cAAc,GAC9B"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 292 KiB

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Blog</title>
<link rel="stylesheet" href="/assets/css/style.css">
</head>
<body>
<nav>
<a href="/">Home</a>
<a href="/blog.html">Blog</a>
<a href="https://github.com/TTWNO/">Code</a>
</nav>
<ul>
<li>
<h2><a href="/2020/01/01/bananas-for-testing.html">(For Testing Purposes) Bananas</a></h2>
<span class="post-date">01 January 2020</span>
<p><p>A banana is an edible fruit botanically a berry produced by several kinds
of large herbaceous flowering plants in the genus Musa.</p>
</p>
</li>
</ul>
</body>
</html>

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.0.0">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2020-01-21T02:06:00+00:00</updated><id>http://localhost:4000/feed.xml</id><entry><title type="html">(For Testing Purposes) Bananas</title><link href="http://localhost:4000/2020/01/01/bananas-for-testing.html" rel="alternate" type="text/html" title="(For Testing Purposes) Bananas" /><published>2020-01-01T00:00:00+00:00</published><updated>2020-01-01T00:00:00+00:00</updated><id>http://localhost:4000/2020/01/01/bananas-for-testing</id><content type="html" xml:base="http://localhost:4000/2020/01/01/bananas-for-testing.html">&lt;p&gt;A banana is an edible fruit botanically a berry produced by several kinds
of large herbaceous flowering plants in the genus Musa.&lt;/p&gt;
&lt;p&gt;In some countries, bananas used for cooking may be called “plantains”,
distinguishing them from dessert bananas. The fruit is variable in size, color,
and firmness, but is usually elongated and curved, with soft flesh rich in
starch covered with a rind, which may be green, yellow, red, purple, or brown
when ripe.&lt;/p&gt;</content><author><name>jill</name></author><summary type="html">A banana is an edible fruit botanically a berry produced by several kinds of large herbaceous flowering plants in the genus Musa.</summary></entry></feed>

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="/assets/css/style.css">
</head>
<body>
<h1>Tait Hoyem</h1>
<img id="main-img" src="/assets/img/banff.jpg" alt="The valley Banff, Alberta sits in">
<p id="info">
Student
<br>
<a href="https://sait.ca/">Southern Alberta Insitute of Technology (SAIT)</a>
<br>
<a href="https://www.sait.ca/programs-and-courses/full-time-studies/diplomas/information-technology">Information Technology - Software Development major</a>
<br>
tait.hoyem@edu.sait.ca
<br>
</p>
<p class="line-under">
I am a student at the Southern Alberta Institute of Technology (SAIT). My goal is to help visually-impaired and blind individuals use the everyday technology that sighted people do. My next project will bring paper books to the ears of blind individuals.
</p>
<nav>
<a href="/">Home</a>
<a href="/blog.html">Blog</a>
<a href="https://github.com/TTWNO/">Code</a>
</nav>
</body>
</html>

@ -0,0 +1 @@
Sitemap: http://localhost:4000/sitemap.xml

Binary file not shown.

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://localhost:4000/2020/01/01/bananas-for-testing.html</loc>
<lastmod>2020-01-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/blog.html</loc>
</url>
<url>
<loc>http://localhost:4000/</loc>
</url>
</urlset>

@ -0,0 +1,3 @@
---
---
@import "main";

Binary file not shown.

After

Width:  |  Height:  |  Size: 292 KiB

@ -0,0 +1,14 @@
---
layout: default
title: Blog
---
<ul>
{% for post in site.posts %}
<li>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<span class="post-date">{{ post.date | date: "%d %B %Y" }}</span>
<p>{{ post.excerpt }}</p>
</li>
{% endfor %}
</ul>

@ -0,0 +1,20 @@
---
layout: home
---
<h1>Tait Hoyem</h1>
<img id="main-img" src="/assets/img/banff.jpg" alt="The valley Banff, Alberta sits in">
<p id="info">
Student
<br>
<a href="https://sait.ca/">Southern Alberta Insitute of Technology (SAIT)</a>
<br>
<a href="https://www.sait.ca/programs-and-courses/full-time-studies/diplomas/information-technology">Information Technology - Software Development major</a>
<br>
tait.hoyem@edu.sait.ca
<br>
</p>
<p class="line-under">
I am a student at the Southern Alberta Institute of Technology (SAIT). My goal is to help visually-impaired and blind individuals use the everyday technology that sighted people do. My next project will bring paper books to the ears of blind individuals.
</p>

Binary file not shown.
Loading…
Cancel
Save