From 164f777e3803ce72c239a3836d1372a80d756c3c Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Tue, 30 Sep 2014 22:33:42 +0100 Subject: [PATCH] Inital commit --- .gitignore | 1 + CNAME | 0 _data/images.yml | 8 ++++ _data/menu.yml | 2 + _data/project.yml | 4 ++ _layouts/default.html | 99 +++++++++++++++++++++++++++++++++++++++++++ index.md | 8 ++++ 7 files changed, 122 insertions(+) create mode 100644 .gitignore create mode 100644 CNAME create mode 100644 _data/images.yml create mode 100644 _data/menu.yml create mode 100644 _data/project.yml create mode 100644 _layouts/default.html create mode 100644 index.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..c08f9add --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +_site \ No newline at end of file diff --git a/CNAME b/CNAME new file mode 100644 index 00000000..e69de29b diff --git a/_data/images.yml b/_data/images.yml new file mode 100644 index 00000000..7d475040 --- /dev/null +++ b/_data/images.yml @@ -0,0 +1,8 @@ +# Path to project specific favicon.ico, leave blank to use default +favicon: + +# Path to project specific apple-touch-icon-precomposed.png, leave blank to use default +apple_touch: + +# Path to project logo +logo: \ No newline at end of file diff --git a/_data/menu.yml b/_data/menu.yml new file mode 100644 index 00000000..a2f428ee --- /dev/null +++ b/_data/menu.yml @@ -0,0 +1,2 @@ +Getting Started: + Introduction: '/' \ No newline at end of file diff --git a/_data/project.yml b/_data/project.yml new file mode 100644 index 00000000..af9caafb --- /dev/null +++ b/_data/project.yml @@ -0,0 +1,4 @@ +title: +tagline: +description: +google_analytics_tracking_id: \ No newline at end of file diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 00000000..ceace8a6 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,99 @@ + + + + + + + {% if page.url == '/' %} + {{ site.data.project.title }} - {{ site.data.project.tagline }} + {% else %} + {{ page.title }} - {{ site.data.project.title }} + {% endif %} + {% if site.data.project.description %} + + {% endif %} + {% if site.data.images.favicon %} + + {% else %} + + {% endif %} + {% if site.data.images.apple_touch %} + + {% else %} + + {% endif %} + + + + +
+ + The League of Extraordinary Packages + +

Our Packages:

+ +
+ +
+ + + Presented by The League of Extraordinary Packages + +
+ + + + +
+ + {% for section in site.data.menu %} +

{{ section[0] }}

+
    + {% for link in section[1] %} +
  • + {{ link[0] }} +
  • + {% endfor %} +
+ {% endfor %} +
+
+ {{ content }} +
+
+ + + + + + + +{% if site.data.project.google_analytics_tracking_id %} + +{% endif %} + + + \ No newline at end of file diff --git a/index.md b/index.md new file mode 100644 index 00000000..620438a1 --- /dev/null +++ b/index.md @@ -0,0 +1,8 @@ +--- +layout: default +permalink: / +title: Introduction +--- + +Introduction +============ \ No newline at end of file