Browse Source

initial site

blog
Nathan Bergey 10 years ago
parent
commit
f041dd40de
  1. 2
      _config.yml
  2. 41
      _layouts/base.html
  3. 11
      index.markdown
  4. 497
      resources/css/bootstrap.min.css

2
_config.yml

@ -0,0 +1,2 @@
exclude: [README.md, LICENSE]
pygments: True

41
_layouts/base.html

@ -0,0 +1,41 @@
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="natronics.org">
<meta name="author" content="Nathan Bergey">
{% capture lvl %}{{ page.url | append:'index.html' | split:'/' | size }}{% endcapture %}
{% capture relative %}{% for i in (3..lvl) %}../{% endfor %}{% endcapture %}
<link href='http://fonts.googleapis.com/css?family=Arvo:400,700|PT+Sans:400,700,400italic' rel='stylesheet' type='text/css'>
<link href="{{ relative }}resources/css/bootstrap.min.css" rel="stylesheet">
<link href="{{ relative }}resources/css/style.css" rel="stylesheet">
<title>{{ page.title }}</title>
</head>
<body>
<div class="wrapper">
<div id="header">
<div class="container">
<h1>natronics.org</h1>
</div>
</div>
<div id="content">
<div class="container">
{{ content }}
</div>
</div>
</div>
<div id="footer">
<div class="container">
<a class="pull-right" href="#">Back to top</a>
<p>
made by @natronics in the fabulous hipster paradise of Portland, Ore.
</p>
</div>
</div>
</body>
</html>

11
index.markdown

@ -0,0 +1,11 @@
---
layout: base
title: Title
---
# Home
There can be no thought of finishing for ‘aiming for the stars.’ Both
figuratively and literally, it is a task to occupy the generations.
And no matter how much progress one makes, there is always the thrill
of just beginning.

497
resources/css/bootstrap.min.css
File diff suppressed because it is too large
View File

Loading…
Cancel
Save