Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sidorares/sidorares.github.io


https://github.com/sidorares/sidorares.github.io

Last synced: 21 days ago
JSON representation

Awesome Lists containing this project

README

        

= HubPress

== What Is HubPress?
image::http://hubpress.io/img/editor.png[]

HubPress is a free, open source tool to build your future awesome blog!

Created and maintained by http://github.com/anthonny[Anthonny Quérouil] (twitter http://twitter.com/anthonny_q[@anthonny_q]).

NOTE: HubPress is actually in preview, if you find some bugs come to see us.

Documentation is rapidly evolving as the project gains momentum. Check back regularly for more tips on how to use HubPress.

== Getting Started

=== Installation
==== Fork the repository
Click the Fork icon image:http://hubpress.io/img/fork-icon.png[Fork,80] to create a copy of this repository within your GitHub account.

==== Use the github.io domain

If you have never used your GitHub Pages domain before, you can use this procedure to quickly set up HubPress. With this method, only a few steps are required to get HubPress deployed and ready for use.

IMPORTANT: If you are currently using your `username.github.io` GitHub Pages domain for another project, or if you want to use a custom domain name, skip to the next procedure for instructions.

. Rename your repository to `.github.io`

. Set values in `hubpress/config.json`
+
image:http://hubpress.io/img/edit-config.png[Edit config]
+
The following parameters are mandatory :
+
* `username`, which is your GitHub user name,
* `repositoryName`, which is the new name of the repository fork, `.github.io`.
. Commit the changes, and open the GitHub Pages domain: `http://.github.io/`.
. The following screen indicates you have correctly configured HubPress
+
image:http://hubpress.io/img/home-install.png[Install complete,300]

==== Use a Custom Domain or GitHub Page Domain Already In Use

If you want your blog to be available on a custom domain, or you are already using your GitHub Pages domain to host another project, some extra configuration is required.

. In the repository settings, set the default branch to `gh-pages` :
+
image:http://hubpress.io/img/settings-gh-pages.png[Settings gh-pages,400]
. Switch your repository to the branch *gh-pages*
+
image:http://hubpress.io/img/switch-gh-pages.png[Install complete,300]
+
. Set the required values in `hubpress/config.json
+
image:http://hubpress.io/img/edit-config-gh-pages.png[Edit config]
+
The following parameters are mandatory :
+
* `username`, which is your GitHub user name,
* `repositoryName`, which is the repository fork. For example, `hubpress.io` if you did not rename it.
. Commit the changes, and open the GitHub Pages domain: `http://.github.io//`.
. The following screen indicates you have correctly configured HubPress
+
image:http://hubpress.io/img/home-install.png[Install complete,300]

== Administration Console

The HubPress Administration Console is available at */hubpress*

* `http://.github.io/hubpress/` for GitHub Hosted blogs, or
* `http://.github.io//hubpress/` for Domain Hosted blogs.

=== Log Into the Administration Console

image:http://hubpress.io/img/login.png[Install complete,300]

Enter your GitHub credentials to log into HubPress Admin.

Once you authenticate, a personal token is created for future calls from HubPress to the GitHub API.

This is synchronized across all sessions of HubPress, so if you open the Administration Console on your PC and then your Tablet, the token is applicable to all devices.

=== Settings Page

You can configure basic blog settings (such as CNAME and Pagination) and social media accounts you want to connect to your blog.

==== Meta

This section contains basic information configured in the `/hubpress/config.json` file.

The *Git CNAME* field is configurable, and lets you specify a custom domain name for your blog. See https://help.github.com/articles/setting-up-a-custom-domain-with-github-pages/ for instructions about setting up a CNAME for your blog.

==== Site

===== Title and Description

The *Title* and *Description* fields allow you to give your blog a name, and tell visitors what they can expect from your blog posts.

The *Logo* and *Cover Image* fields can be used the following ways:

* A HTML link to an image hosting service. For example gravatar.
* A link to an image committed to the /images directory of your blog repository.

NOTE: See the `/images/README.adoc` file for tips about embedding images into your blog posts.

===== Theme

The *Theme* is selectable from the list of themes stored in the `/themes` directory. Specify it according to it is spelled in it's containing folder.

===== Google Analytics

The *Google Analytics* field takes the unique Google Analytics code generated for the site.

===== Disquss Shortname

The *Disquss shortname* field takes your Discuss user name. Only the user name is required, not a link to your profile page.

==== Social Network

All fields in this group require full URLs to your public profile page. The way these values are rendered on your blog depends on the theme selected.

== Managing Posts

When you first start HubPress, the *Posts* view is empty. As you create blog posts, the page populates with the list of posts on the left, and a live preview of the blog post itself on the right.

=== Creating a Post

NOTE: If you have never used AsciiDoc before to write content, the http://asciidoctor.org/docs/asciidoc-writers-guide/[AsciiDoctor Writer's Guide] should be your first stop in your journey. The guide provides both basic and advanced mark-up examples for you to copy and use.

HubPress Editor displays the AsciiDoc code on the left, and the live preview on the right.

==== Basic AsciiDoc Blog Tips

===== Blog Title and Headings

The blog title is always Level 1 in an AsciiDoc post. For example, `= Blog Title` sets the name of the Blog Post to `Blog Title`.

A `= Blog Title` is required for saving it successfully.

If you want a first-level heading you use `== First Level Heading`, and so on to create other nested headings.

===== Cover Image

If you want to add a cover image to your Blog Post, you must set the `hp-image` attribute.

For example :
[source, asciidoc]
----
= Blog Title
:hp-image: http://github.com///images/a-cover-image.jpg
----

===== Publication date

By default, the publication date is the date of the day to which you introduced your Blog Post. You can force the publication date by adding the `published_at`

For example :
[source, asciidoc]
----
= Blog Title
:published_at: 2015-01-31
----

===== Tags and Categories

Actually, only tags are supported. You can add some tags by using the `hp-tags` attribute.

For example :
[source, asciidoc]
----
= Blog Title
:hp-tags: tag1,tag2,tag3
----

== Credits

Thanks to https://github.com/jaredmorgs[Jared Morgan] for initially tidying up the README you see here, and continuing to be the "docs guy" for HubPress.