From 9992fabb83a9990149afe80cd1a4939cad8c9bd8 Mon Sep 17 00:00:00 2001 From: Brandon Mathis Date: Fri, 5 Aug 2011 16:55:57 -0400 Subject: [PATCH] added help page --- source/_includes/custom/navigation.html | 2 +- source/_layouts/help.html | 40 +++++++++++++++++++++++++ source/help/index.markdown | 27 +++++++++++++++++ 3 files changed, 68 insertions(+), 1 deletion(-) create mode 100644 source/_layouts/help.html create mode 100644 source/help/index.markdown diff --git a/source/_includes/custom/navigation.html b/source/_includes/custom/navigation.html index d7ac445..ed13848 100644 --- a/source/_includes/custom/navigation.html +++ b/source/_includes/custom/navigation.html @@ -1,6 +1,6 @@ diff --git a/source/_layouts/help.html b/source/_layouts/help.html new file mode 100644 index 0000000..133849c --- /dev/null +++ b/source/_layouts/help.html @@ -0,0 +1,40 @@ +--- +layout: default +--- + +
+
+
+

{{ page.title | titlecase }}

+ {% if page.date %}

{% include post/date.html %}

{% endif %} +
+ {{ content }} + {% unless page.footer == false %} +
+ {% if page.date or page.author %}

+ {% if page.author %}{% include post/author.html %}{% endif %} + {% include post/date.html %} + {% if page.categories %}{% include post/categories.html %}{% endif %} +

{% endif %} + {% unless page.sharing == false %} + {% include post/sharing.html %} + {% endunless %} +
+ {% endunless %} +
+{% if site.disqus_short_name and page.comments == true %} +
+

Comments

+
{% include post/disqus_thread.html %}
+
+{% endif %} +
+{% unless page.sidebar == false %} + +{% endunless %} diff --git a/source/help/index.markdown b/source/help/index.markdown new file mode 100644 index 0000000..b06893c --- /dev/null +++ b/source/help/index.markdown @@ -0,0 +1,27 @@ +--- +layout: help +title: "Octopress Help" +date: 2011-08-02 14:03 +footer: false +--- + +Don't feel like reading the documentation? You've come to the right place! Actually no, please don't do that. If you have questions or problems I'm happy to help, but be sure you've read through some of these pages first. + +1. [Getting Started](/docs/setup/) - *A Guide for installing Octopress and its dependencies.* +2. [Configuring Octopress](/docs/configuring/) - *This is important and easy. Be sure to give it a look.* +3. [Blogging with Octopress](/docs/blogging/) - *Learn how to create pages and posts.* +4. [Deploying](/docs/deploying/) - *A walkthrough for different deployment strategies.* + +## Getting/Giving Help + +If you have a question, or if you love helping others, Join me on: + +1. **IRC** in the #octopress channel on irc.freenode.net +2. **[Convore](http://convore.com/octopress/)** a web chat system. If I'm not there, leave a message. +3. **[Post an issue](http://github.com/imathis/octopress/issues)** on Github's issue tracker. + +## Contributing + +If you want to help out, [fork Octopress on Github](http://github.com/imathis/octopress) and send me a pull request. +This site is also part of the Octopress project and if you find errors you can [post issues](http://github.com/imathis/octopress/issues/) +or send me a pull request for the [site branch](http://github.com/imathis/octopress/tree/site).