Go to file
Daniel Hahler 32e277d9f5 Merge pull request #59 from aajjbb/recipes-docs
Adding a guide on how to contribute to the recipes section
2017-01-20 19:45:47 +01:00
images index: Replace the default screenshot 2016-12-19 22:05:17 -05:00
src@58fed31d88 v4.0 2016-12-25 22:27:45 +01:00
templates Add a recipes section (#58) 2017-01-17 21:50:13 +01:00
.gitignore Remove the old authors page 2016-12-17 18:17:54 -05:00
.gitmodules v3.5.6 (and move to github) 2015-01-10 20:45:24 +01:00
.travis.yml .travis.yml: Use --no-pager (#40) 2016-12-25 12:42:55 +01:00
Makefile Add .txt extension for changelog files (#52) 2016-12-26 23:00:58 +01:00
README.md adding information about editig files through github web interface 2017-01-20 14:39:09 -02:00
community.mdwn community: Add hints on how to change the web page (#55) 2017-01-02 19:19:33 +01:00
doc.mdwn Remove remaining links to the wiki 2016-12-19 09:54:40 +01:00
doing_a_release.mdwn Fix some small issues in doing_a_release.mdwn (#45) 2016-12-25 23:36:10 +01:00
download.mdwn Add .txt extension for changelog files (#52) 2016-12-26 23:00:58 +01:00
index.mdwn index: Replace the default screenshot 2016-12-19 22:05:17 -05:00
local.css Re-add Flattr button (#53) 2016-12-28 12:32:30 +01:00
recipes.mdwn Adding a guide on how to contribute to the recipes section 2017-01-20 10:35:47 -02:00
releases.mdwn v4.0 2016-12-25 22:27:45 +01:00

README.md

Website for awesome WM

Build Status

This is the main source of the website for the awesome window manager.

Requirements

Hacking

You can build the web page locally by running make, which will generate the output in html/.

To view it, open html/index.html in your web browser.

You can simulate running a web server using Python, which will automatically open index.html when following a link to a directory:

$ cd html
$ python3 -m http.server -b localhost 8000 &

Contributing to Recipes Section

  1. Fork this repository and create a new branch with a name relevant to the information you will be adding to the site. If you have doubts in how to Fork and Branch, take a look in this cheat-sheet here

The process of editing files can be done inside GitHub's interface, more information here

  1. Create a new link in markdown format [Link Name](Real Link) in the appropiated section in recipes.mdwn file.
  1. Create a new page with your tutorial/setup/widget/snippet in Markdown, with a relevant name, under the recipes folder.

    • Example recipes/xrandr-tutorial.mdmw
  2. Link your page to the right section in the recipes.mdwn page with Markdown syntax.

    • Example [XrandR Tutorial](../recipes/xrandr-tutorial.html)

Seeing results and pulling your changes

  1. Build the site as explaining in the Hacking section in this same page to check how your changes will looks like.

  2. If everything is right and looks good, you're ready do make a Pull Request.

Publishing

The master branch gets built by Travis CI, and is then published through Github's Organization Pages.

Other resources

The API documentation for the master branch at /apidoc is viewable at Github's Project Pages for the apidoc repo, where it gets pushed to from successful builds in the awesome main repo.