Rewrite
This commit is contained in:
commit
a40635de3d
6 changed files with 96 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
_site/
|
1
CNAME
Normal file
1
CNAME
Normal file
|
@ -0,0 +1 @@
|
|||
www.thepaperpilot.org
|
5
_config.yml
Normal file
5
_config.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
name: The Paper Pilot
|
||||
markdown: kramdown
|
||||
kramdown:
|
||||
input: GFM
|
||||
permalink: /blog/:year/:month/:day/:title
|
36
_layouts/default.html
Normal file
36
_layouts/default.html
Normal file
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>{{ page.title }}</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/css/main.css">
|
||||
|
||||
</head>
|
||||
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/">Home</a></li>
|
||||
<li><a href="/kiosk">Computer Science Kiosk</a></li>
|
||||
<li><a href="/space">Space Game</a></li>
|
||||
<li><a href="/ican">iCan</a></li>
|
||||
<li><a href="/strange">12 is Strange</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div class="container">
|
||||
|
||||
{{ content }}
|
||||
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<ul>
|
||||
<li><a href="mailto:hankquinlanhub@gmail.com">email</a></li>
|
||||
<li><a href="https://github.com/thepaperpilot">github.com/thepaperpilot</a></li>
|
||||
<li><a href="https://www.linkedin.com/pub/anthony-lawn/a9/a98/2">linkedin.com/pub/anthony-lawn</a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
</html>
|
44
css/main.css
Normal file
44
css/main.css
Normal file
|
@ -0,0 +1,44 @@
|
|||
body {
|
||||
margin: 20px auto;
|
||||
width: 60%;
|
||||
color: #282C34;
|
||||
}
|
||||
nav ul, footer ul {
|
||||
font-family:'Helvetica', 'Sans-Serif';
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
nav ul li, footer ul li {
|
||||
display: inline;
|
||||
margin-right: 20px;
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #ABB2BF;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
h1 {
|
||||
font-size: 3em;
|
||||
font-family:'Helvetica', 'Sans-Serif';
|
||||
}
|
||||
p {
|
||||
font-size: 1.5em;
|
||||
line-height: 1.4em;
|
||||
color: #ABB2BF;
|
||||
}
|
||||
footer {
|
||||
border-top: 1px solid #2F343F;
|
||||
font-size: .8em;
|
||||
}
|
||||
|
||||
ul.posts {
|
||||
margin: 20px auto 40px;
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
ul.posts li {
|
||||
list-style: none;
|
||||
}
|
9
index.html
Normal file
9
index.html
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
layout: default
|
||||
title: The Paper Pilot
|
||||
---
|
||||
<div class="blurb">
|
||||
<h1>Welcome!</h1>
|
||||
<p>I'm Anthony Lawn, or "The Paper Pilot". My passion is computer science, which you can see from my history of software engineering and game development stretching across desktop, web, and mobile applications. </p>
|
||||
<a href="https://drive.google.com/uc?export=download&id=0B4xCmMA9eS2jZExWTGhtbS1nT0k" class="download" title="Download as PDF">Download my Resume</a>
|
||||
</div>
|
Loading…
Reference in a new issue