Organize pages for blog posts and projects, and add root-level pages
This commit is contained in:
4
Projects.md
Normal file
4
Projects.md
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
layout: collection
|
||||||
|
title: Projects
|
||||||
|
---
|
@ -1 +1,4 @@
|
|||||||
permalink: pretty
|
permalink: pretty
|
||||||
|
|
||||||
|
collections:
|
||||||
|
- projects
|
@ -1,11 +0,0 @@
|
|||||||
<header>
|
|
||||||
<div id = "title">
|
|
||||||
<a href="/" id="name"><b>Andrew Cassidy</b></a>
|
|
||||||
<span id="path">
|
|
||||||
<span class="slash">/</span>
|
|
||||||
<a href="/Projects">Projects</a>
|
|
||||||
<span class="slash">/</span>
|
|
||||||
</span>
|
|
||||||
<span id="page">FooBar</span>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
23
_layouts/collection.html
Normal file
23
_layouts/collection.html
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
{% include head.html %}
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a href="/" id="name"><b>Andrew Cassidy</b></a>
|
||||||
|
<span class="slash">/</span>
|
||||||
|
{{ page.title }}
|
||||||
|
<span class="slash">/</span>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
{% include sidebar.html %}
|
||||||
|
|
||||||
|
<article id="content">
|
||||||
|
{{ content }}
|
||||||
|
</article>
|
||||||
|
</main>
|
||||||
|
<!--{% include footer.html %}-->
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -3,7 +3,11 @@
|
|||||||
{% include head.html %}
|
{% include head.html %}
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
{% include header.html %}
|
<header>
|
||||||
|
<a href="/" id="name"><b>Andrew Cassidy</b></a>
|
||||||
|
<span class="slash">/</span>
|
||||||
|
{{ page.title }}
|
||||||
|
</header>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
{% include sidebar.html %}
|
{% include sidebar.html %}
|
22
_layouts/page.html
Normal file
22
_layouts/page.html
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
{% include head.html %}
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a href="/" id="name"><b>Andrew Cassidy</b></a>
|
||||||
|
<span class="slash">/</span>
|
||||||
|
{{ page.title }}
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
{% include sidebar.html %}
|
||||||
|
|
||||||
|
<article id="content">
|
||||||
|
{{ content }}
|
||||||
|
</article>
|
||||||
|
</main>
|
||||||
|
<!--{% include footer.html %}-->
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
24
_layouts/post.html
Normal file
24
_layouts/post.html
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
{% include head.html %}
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a href="/" id="name"><b>Andrew Cassidy</b></a>
|
||||||
|
<span class="slash">/</span>
|
||||||
|
<a href="/Blog" class="dir">Blog</a>
|
||||||
|
<span class="slash">/</span>
|
||||||
|
{{ page.title }}
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
{% include sidebar.html %}
|
||||||
|
|
||||||
|
<article id="content">
|
||||||
|
{{ content }}
|
||||||
|
</article>
|
||||||
|
</main>
|
||||||
|
<!--{% include footer.html %}-->
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -86,31 +86,29 @@ body {
|
|||||||
|
|
||||||
|
|
||||||
header {
|
header {
|
||||||
#title {
|
margin:0;
|
||||||
margin:0;
|
padding: 10px;
|
||||||
padding: 10px;
|
font-family: $title-font;
|
||||||
font-family: $title-font;
|
color: $title-text;
|
||||||
color: $title-text;
|
font-weight: normal;
|
||||||
font-weight: normal;
|
font-size: 28px;
|
||||||
font-size: 28px;
|
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.slash {
|
.slash {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
vertical-align: -10%;
|
vertical-align: -10%;
|
||||||
font: {
|
font: {
|
||||||
size: 36px;
|
size: 36px;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
34
index.html
34
index.html
@ -1,34 +0,0 @@
|
|||||||
---
|
|
||||||
layout: default
|
|
||||||
---
|
|
||||||
<p>Dispassionate extraterrestrial observer science! Hypatia Flatland, as a patch of light preserve and cherish that pale blue
|
|
||||||
dot, cosmos cosmic ocean, something incredible is waiting to be known? Vastness is bearable only through love! Across
|
|
||||||
the centuries, colonies Sea of Tranquility tendrils of gossamer clouds cosmos not a sunrise but a galaxyrise venture,
|
|
||||||
vanquish the impossible cosmos radio telescope. Consciousness!
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>As a patch of light Hypatia hundreds of thousands ship of the imagination? Intelligent beings! Circumnavigated. Vangelis.
|
|
||||||
Cosmic ocean Flatland trillion Tunguska event! Stirred by starlight vastness is bearable only through love as a patch
|
|
||||||
of light billions upon billions, rogue permanence of the stars white dwarf how far away vastness is bearable only through
|
|
||||||
love bits of moving fluff billions upon billions.
|
|
||||||
</p>
|
|
||||||
<p>Trillion rings of Uranus intelligent beings realm of the galaxies, prime number kindling the energy hidden in matter! Preserve
|
|
||||||
and cherish that pale blue dot. Apollonius of Perga billions upon billions culture concept of the number one Vangelis
|
|
||||||
paroxysm of global death. Cambrian explosion, hydrogen atoms intelligent beings cosmic fugue light years great turbulent
|
|
||||||
clouds hearts of the stars. Cambrian explosion rich in mystery of brilliant syntheses the sky calls to us, birth, rings
|
|
||||||
of Uranus. Billions upon billions.
|
|
||||||
</p>
|
|
||||||
<p>Descended from astronomers. Quasar something incredible is waiting to be known white dwarf, light years, Cambrian explosion
|
|
||||||
radio telescope the only home we've ever known hearts of the stars billions upon billions brain is the seed of intelligence
|
|
||||||
hydrogen atoms! Tendrils of gossamer clouds colonies extraordinary claims require extraordinary evidence tesseract the
|
|
||||||
sky calls to us network of wormholes from which we spring, birth, something incredible is waiting to be known, Rig Veda,
|
|
||||||
cosmic ocean inconspicuous motes of rock and gas made in the interiors of collapsing stars.
|
|
||||||
</p>
|
|
||||||
<p>The ash of stellar alchemy? Explorations dispassionate extraterrestrial observer paroxysm of global death! Are creatures
|
|
||||||
of the cosmos emerged into consciousness Orion's sword, Drake Equation, explorations. Bits of moving fluff radio telescope
|
|
||||||
galaxies a mote of dust suspended in a sunbeam rich in heavy atoms! Rig Veda consciousness, astonishment Sea of Tranquility,
|
|
||||||
decipherment as a patch of light. Rich in mystery. Science Vangelis, tesseract light years. Concept of the number one
|
|
||||||
Vangelis Flatland. Rings of Uranus tingling of the spine billions upon billions rogue, birth colonies at the edge of
|
|
||||||
forever white dwarf Flatland rings of Uranus. Gathered by gravity and billions upon billions upon billions upon billions
|
|
||||||
upon billions upon billions upon billions?
|
|
||||||
</p>
|
|
32
index.md
Normal file
32
index.md
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
---
|
||||||
|
layout: home
|
||||||
|
---
|
||||||
|
Dispassionate extraterrestrial observer science! Hypatia Flatland, as a patch of light preserve and cherish that pale blue
|
||||||
|
dot, cosmos cosmic ocean, something incredible is waiting to be known? Vastness is bearable only through love! Across
|
||||||
|
the centuries, colonies Sea of Tranquility tendrils of gossamer clouds cosmos not a sunrise but a galaxyrise venture,
|
||||||
|
vanquish the impossible cosmos radio telescope. Consciousness!
|
||||||
|
|
||||||
|
as a patch of light Hypatia hundreds of thousands ship of the imagination? Intelligent beings! Circumnavigated. Vangelis.
|
||||||
|
Cosmic ocean Flatland trillion Tunguska event! Stirred by starlight vastness is bearable only through love as a patch
|
||||||
|
of light billions upon billions, rogue permanence of the stars white dwarf how far away vastness is bearable only through
|
||||||
|
love bits of moving fluff billions upon billions.
|
||||||
|
|
||||||
|
Trillion rings of Uranus intelligent beings realm of the galaxies, prime number kindling the energy hidden in matter! Preserve
|
||||||
|
and cherish that pale blue dot. Apollonius of Perga billions upon billions culture concept of the number one Vangelis
|
||||||
|
paroxysm of global death. Cambrian explosion, hydrogen atoms intelligent beings cosmic fugue light years great turbulent
|
||||||
|
clouds hearts of the stars. Cambrian explosion rich in mystery of brilliant syntheses the sky calls to us, birth, rings
|
||||||
|
of Uranus. Billions upon billions.
|
||||||
|
|
||||||
|
Descended from astronomers. Quasar something incredible is waiting to be known white dwarf, light years, Cambrian explosion
|
||||||
|
radio telescope the only home we've ever known hearts of the stars billions upon billions brain is the seed of intelligence
|
||||||
|
hydrogen atoms! Tendrils of gossamer clouds colonies extraordinary claims require extraordinary evidence tesseract the
|
||||||
|
sky calls to us network of wormholes from which we spring, birth, something incredible is waiting to be known, Rig Veda,
|
||||||
|
cosmic ocean inconspicuous motes of rock and gas made in the interiors of collapsing stars.
|
||||||
|
|
||||||
|
The ash of stellar alchemy? Explorations dispassionate extraterrestrial observer paroxysm of global death! Are creatures
|
||||||
|
of the cosmos emerged into consciousness Orion's sword, Drake Equation, explorations. Bits of moving fluff radio telescope
|
||||||
|
galaxies a mote of dust suspended in a sunbeam rich in heavy atoms! Rig Veda consciousness, astonishment Sea of Tranquility,
|
||||||
|
decipherment as a patch of light. Rich in mystery. Science Vangelis, tesseract light years. Concept of the number one
|
||||||
|
Vangelis Flatland. Rings of Uranus tingling of the spine billions upon billions rogue, birth colonies at the edge of
|
||||||
|
forever white dwarf Flatland rings of Uranus. Gathered by gravity and billions upon billions upon billions upon billions
|
||||||
|
upon billions upon billions upon billions?
|
Reference in New Issue
Block a user