Start adding delicious content

This commit is contained in:
Andrew Cassidy 2017-11-14 22:49:46 -08:00 committed by Andrew Cassidy
parent 0ab6cc88fb
commit c842c635bb
10 changed files with 67 additions and 2 deletions

5
.gitignore vendored
View File

@ -1,3 +1,4 @@
_site/
.sass-cache/
_site
.sass-cache
.jekyll-metadata
Gemfile.lock

2
Gemfile Normal file
View File

@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem 'github-pages'

1
_config.yml Normal file
View File

@ -0,0 +1 @@
permalink: pretty

4
_includes/footer.html Normal file
View File

@ -0,0 +1,4 @@
<footer>
<hr>
<p><b>Copyright 20{{ site.time | date: '%y' }} Andrew Cassidy</b> All Rights Reserved</p>
</footer>

9
_includes/head.html Normal file
View File

@ -0,0 +1,9 @@
<head>
<meta charset=utf-8 />
<title> {% if page.title %} {{ page.title }} | {% endif %} Andrew Cassidy</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/css/style.css" />
<link href="https://fonts.googleapis.com/css?family=Barlow+Condensed:600|Barlow:400,600|PT+Serif&amp;subset=latin-ext" rel="stylesheet">
</head>

3
_includes/header.html Normal file
View File

@ -0,0 +1,3 @@
<header>
<h1 id = "title"> Andrew Cassidy </h1>
</header>

15
_layouts/default.html Normal file
View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
<div id="main">
{% include header.html %}
<div id="content">
{{ content }}
</div>
{% include footer.html %}
</div>
</body>
</html>

13
_svg/circuits1.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 67 KiB

14
_svg/circuits2.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

3
index.html Normal file
View File

@ -0,0 +1,3 @@
---
layout: default
---