Skip to content

Commit

Permalink
Customizing Hexo site
Browse files Browse the repository at this point in the history
- converted site to Hexo
- added & customized Minos theme
- removed unnecessary '/css' & '/js' from old site
+ updated navbar & footer
+ added Hexo instructions to README
+ added presentation screenshot
  • Loading branch information
dotmacro committed Jun 5, 2016
1 parent f2f494c commit e1aaaa7
Show file tree
Hide file tree
Showing 19 changed files with 74 additions and 746 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ db.json
*.log
node_modules/
public/
.deploy*/
.deploy*/
notes.md
42 changes: 39 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Group Income
# GroupIncome.org Website

__Visit [groupincome.org](http://groupincome.org)__

Expand All @@ -16,6 +16,42 @@ A `group income` ___(n)___ is a fair income sharing mechanism that allows groups

### Contributing

__This project uses [Hexo](https://hexo.io/) to generate the HTML from the `index.md` files inside `/source`!__
__This project uses [Hexo](https://hexo.io/) to generate the HTML from the `index.md` files inside `/source`!__ So if you want to translate or update this webpage, __please focus on `index.md` files.__

So if you want to translate this webpage, or update it, __please focus on `index.md` files.__
Make sure to work in a named branch. See [`CONTRIBUTING.md`](https://github.com/okTurtles/group-income-simple/blob/master/CONTRIBUTING.md) for details.

#### Getting started

If you haven't already, you'll need to install [Hexo](https://hexo.io):

``` bash
npm install hexo-cli -g
```

Clone the website repo & install dependencies:

``` bash
$ git clone https://github.com/okTurtles/groupincome.org.git
$ cd groupincome.org/
$ npm install
```

To generate static files from `/source`:

``` bash
$ hexo generate
```

To run the Hexo server:

``` bash
$ hexo server
```

The [Hexo server](https://hexo.io/docs/server.html) will watch for file changes/additions and update automatically, so it's not necessary to restart the server to see most changes. However, if you install or update [Hexo plugins](https://hexo.io/docs/plugins.html) or make changes to either `_config.yml` file, you'll need to restart the server to see the changes.

### Contributors

- [taoeffect](https://github.com/taoeffect)
- [dotmacro](https://github.com/dotmacro)

3 changes: 2 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ title: Group Income
subtitle: Voluntary Automated Decentralized Basic Income
description:
author: okTurtles Foundation
author_url: https://okturtles.org
language: en
timezone:

# URL
## If your site is put in a subdirectory, set url as 'http://yoursite.com/child' and root as '/child/'
url: http://groupcurrency.org
url: http://groupcurrency.org/
root: /
permalink: :title/
permalink_defaults:
Expand Down
Loading

0 comments on commit e1aaaa7

Please sign in to comment.