Start adding delicious content
This commit is contained in:
parent
0ab6cc88fb
commit
c842c635bb
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
_site/
|
||||
.sass-cache/
|
||||
_site
|
||||
.sass-cache
|
||||
.jekyll-metadata
|
||||
Gemfile.lock
|
||||
|
1
_config.yml
Normal file
1
_config.yml
Normal file
@ -0,0 +1 @@
|
||||
permalink: pretty
|
4
_includes/footer.html
Normal file
4
_includes/footer.html
Normal 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
9
_includes/head.html
Normal 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&subset=latin-ext" rel="stylesheet">
|
||||
</head>
|
3
_includes/header.html
Normal file
3
_includes/header.html
Normal file
@ -0,0 +1,3 @@
|
||||
<header>
|
||||
<h1 id = "title"> Andrew Cassidy </h1>
|
||||
</header>
|
15
_layouts/default.html
Normal file
15
_layouts/default.html
Normal 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
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
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
3
index.html
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
Loading…
Reference in New Issue
Block a user