mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-10-31 23:35:00 -04:00
added help page
This commit is contained in:
parent
1857e62865
commit
9992fabb83
@ -1,6 +1,6 @@
|
||||
<ul role=main-navigation>
|
||||
<li><a href="{{ root_url }}/">Blog</a></li>
|
||||
<li><a href="{{ root_url }}/docs">Documentation</a></li>
|
||||
<li><a href="{{ root_url }}/help">Help</a></li>
|
||||
<li><a href="http://github.com/imathis/octopress">Source</a></li>
|
||||
<li><a href="http://convore.com/octopress/support">Support</a></li>
|
||||
</ul>
|
||||
|
40
source/_layouts/help.html
Normal file
40
source/_layouts/help.html
Normal file
@ -0,0 +1,40 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
<div>
|
||||
<article>
|
||||
<header>
|
||||
<h1 class="entry-title">{{ page.title | titlecase }}</h1>
|
||||
{% if page.date %}<p class="meta">{% include post/date.html %}</p>{% endif %}
|
||||
</header>
|
||||
{{ content }}
|
||||
{% unless page.footer == false %}
|
||||
<footer>
|
||||
{% if page.date or page.author %}<p class="meta">
|
||||
{% if page.author %}{% include post/author.html %}{% endif %}
|
||||
{% include post/date.html %}
|
||||
{% if page.categories %}{% include post/categories.html %}{% endif %}
|
||||
</p>{% endif %}
|
||||
{% unless page.sharing == false %}
|
||||
{% include post/sharing.html %}
|
||||
{% endunless %}
|
||||
</footer>
|
||||
{% endunless %}
|
||||
</article>
|
||||
{% if site.disqus_short_name and page.comments == true %}
|
||||
<section>
|
||||
<h1>Comments</h1>
|
||||
<div id="disqus_thread">{% include post/disqus_thread.html %}</div>
|
||||
</section>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% unless page.sidebar == false %}
|
||||
<aside role=sidebar>
|
||||
{% if site.page_asides.size %}
|
||||
{% include_array help_asides %}
|
||||
{% else %}
|
||||
{% include_array default_asides %}
|
||||
{% endif %}
|
||||
</aside>
|
||||
{% endunless %}
|
27
source/help/index.markdown
Normal file
27
source/help/index.markdown
Normal file
@ -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).
|
Loading…
Reference in New Issue
Block a user