-
Notifications
You must be signed in to change notification settings - Fork 0
Create Jekyll-based static website for documentation #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
ebe31ff
Create CNAME
leandroebner c2e07bc
Add initial Jekyll configuration settings
leandroebner 183eb13
Add default HTML layout for documentation
leandroebner 6bfa229
Add style.scss for custom CSS styling
leandroebner 5237b47
Add files via upload
leandroebner a46cce9
Create README.md for HOMatE.club documentation
leandroebner 4e2bb97
Add README for HOMatE.club lemonade status
leandroebner ce250e2
Add syntax documentation for log format
leandroebner 8877700
Update README with website and social media badges
leandroebner File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,5 @@ | ||
| # Open-Mate | ||
| [](https://homate.club/) | ||
|
|
||
| # Open-Mate [](https://mastodon.social/@homate) | ||
|
|
||
| The best mate-lemonade on campus! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| homate.club |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| <!-- This page is the main landing page of "HOMatE.club". --> | ||
|
|
||
| # Hey 👋 | ||
|
|
||
| Welcome to the official "HOMatE.club" documentation: A local implementation of [Open-Mate](https://github.com/leandroebner/Open-Mate/), an open source mate-lemonade recipe, providing a DIY alternative to commercially available mate-drinks. | ||
|
|
||
| ## About | ||
|
|
||
| HOMatE.club is an attempt and project to create, test, share and iterate an open source recipe for mate-flavoured beverages like the well-known mate-lemonade. The drink is available to the public at our local makerspace "[House Of Makers and Engineers](https://home.rwu.de)". | ||
|
|
||
| ## Status | ||
|
|
||
| Check the current stock of HOMatE.club at our makerspace [here](status). This page displays helpful information on whether you can stop by to enjoy a drink and helps you estimate when the next batch of drinks will be finished. All changes are tracked in a local Git repository and are visible in the appended history. | ||
|
|
||
| ## Roadmap | ||
|
|
||
| While the growing quantities of caffeine help me to stay productive, this project is still an early stage of work in progress and subject to major changes and updates. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| theme: jekyll-theme-minimal | ||
| logo: /assets/logo.svg | ||
| title: HOMatE.club | ||
| description: The best mate-lemonade on campus! | ||
| show_downloads: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="{{ site.lang | default: "en-US" }}"> | ||
| <head> | ||
| <meta charset="UTF-8"> | ||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
|
||
| {% seo %} | ||
| <link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}"> | ||
| <!--[if lt IE 9]> | ||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script> | ||
| <![endif]--> | ||
| {% include head-custom.html %} | ||
| </head> | ||
| <body> | ||
| <div class="wrapper"> | ||
| <header> | ||
| <h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1> | ||
|
|
||
| {% if site.logo %} | ||
| <img src="{{site.logo | relative_url}}" alt="Logo" /> | ||
| {% endif %} | ||
|
|
||
| <p>{{ site.description | default: site.github.project_tagline }}</p> | ||
|
|
||
| {% if site.github.is_project_page %} | ||
| <p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub <small>{{ site.github.repository_nwo }}</small></a></p> | ||
| {% endif %} | ||
|
|
||
| {% if site.github.is_user_page %} | ||
| <p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p> | ||
| {% endif %} | ||
|
|
||
| {% if site.show_downloads %} | ||
| <ul class="downloads"> | ||
| <li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li> | ||
| <li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li> | ||
| <li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li> | ||
| </ul> | ||
| {% endif %} | ||
| </header> | ||
| <section> | ||
|
|
||
| {{ content }} | ||
|
|
||
| </section> | ||
| <footer> | ||
| {% if site.github.is_project_page %} | ||
| <p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p> | ||
| {% endif %} | ||
| <p><small>Created with 🧡 — {% github_edit_link "Improve this page" %}</small></p> | ||
| </footer> | ||
| </div> | ||
| <script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script> | ||
| </body> | ||
| </html> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| --- | ||
| --- | ||
|
|
||
| @import "jekyll-theme-minimal"; | ||
|
|
||
| .gist .gist-meta { | ||
| display: none; | ||
| } |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| <!-- This page will display the current availability of "HOMatE.club" lemonade in our local makerspace. --> | ||
|
|
||
| # Status | ||
|
|
||
| {% gist 334a2b820d256ba60b36c6761d803661 %} | ||
|
leandroebner marked this conversation as resolved.
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| <!-- This page will list the current utilized log syntax and stores all previous versions in form of a comment. --> | ||
|
|
||
| Syntax Version 1.0.0 | ||
|
|
||
| ``` | ||
| ## <MAIN TITLE TEXT> $ | ||
| DD.MM.YYYY HHhMMm | <ADDITIONAL ATTRIBUTES> | ||
|
|
||
| <br> | ||
|
|
||
| ## History | ||
|
|
||
| <br> | ||
|
|
||
| > #### <MAIN TITLE TEXT> $ | ||
| > DD.MM.YYYY HHhMMm | <ADDITIONAL ATTRIBUTES> | ||
| ``` |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.