diff --git a/README.md b/README.md new file mode 100644 index 0000000..caade58 --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +## An easy way to create a document library for your project + +Demo: [https://easydocs.codeandmedia.com/](https://easydocs.codeandmedia.com/) + +This theme for [Zola](https://getzola.org) (static site engine) helps you build and publish your project docs easily and fast. Zola is just one binary that outputs html-pages and additional static assets after building your docs written in Markdown. Thus, you can take the theme, your md-files, Zola and gain flexible and simple website for documentation. + +### Step-by-step + +As you may have heard Zola is quite flexible :) So, the scenario below is one of hundreds possible ways to make things done, feel free to find your best. Also, Zola provides their own mechanism to install and use themes, see [the docs](https://www.getzola.org/documentation/themes/installing-and-using-themes/). + +1. Fork the repo and replace demo-content inside content folder with yours. But take a look to _index.md files. It contains `title` and when you want to have anchor right of your headers add `insert_anchor_links = "right"` to each index. `theme.toml`, screenshot and readme may be deleted too. +2. Inside `config.toml` change URL and title on your own. In extra section you can specify path to your GitHub API for version below the logo on nav, favicon and logo itself. Or just remove the lines if you don't need it. Also, you can configure or turn on some additional settings related to Zola. [Specification is here](https://www.getzola.org/documentation/getting-started/configuration/). +3. In sass/_variables.scss you may change font, color or backgound if you want. +4. Almost done. Now, you should decide how you want to build and where will be hosted your website. You can build it locally and upload to somewhere. Or build in GitHub Actions and host on GitHub Pages / Netlify / CloudFlare Pages / AnyS3CloudStorage. [Howto for GitHub Pages](https://www.getzola.org/documentation/deployment/github-pages/). [My example](https://github.com/o365hq/o365hq.com/blob/main/.github/workflows/main.yml) of GitHub workflow with 2-steps build (the first checks for links and spelling errors, the second uploads to Azure). [Dockerfile](https://github.com/codeandmedia/zola_docsascode_theme/blob/master/Dockerfile) to make Docker image. + +Enjoy your docs! + +* _Icons: [Office UI Fabric Icons](https://uifabricicons.azurewebsites.net/)_ +* _Copy-code-button: [Aaron Luna](https://aaronluna.dev/blog/add-copy-button-to-code-blocks-hugo-chroma/)_ \ No newline at end of file diff --git a/config.toml b/config.toml index 08ce647..3684bf5 100644 --- a/config.toml +++ b/config.toml @@ -9,4 +9,5 @@ highlight_theme = "base16-ocean-light" [extra] logo = "https://logoipsum.com/logo/logo-11.svg" -release = "https://api.github.com/repos/getzola/zola/releases/latest" \ No newline at end of file +release = "https://api.github.com/repos/getzola/zola/releases/latest" +favicon = "https://www.getzola.org/favicon.ico" \ No newline at end of file diff --git a/content/_index.md b/content/_index.md index 5205ef4..2c4a837 100644 --- a/content/_index.md +++ b/content/_index.md @@ -1,30 +1,24 @@ +++ -title = "spec" +title = "index" +insert_anchor_links = "right" +++ +## An easy way to create a document library for your project -Getting started - - Installation - - CLI usage - - Directory structure - - config.toml - -Content - - Organisation - - Sections - - Pages - - Shortcodes - - Internal links & deep linking - - Table of contents - - Syntax highlighting - - Sass - -Templates - - Intro - - Each kind of page and the variables available - - Built-in global functions - - Built-in filters +Demo: [https://easydocs.codeandmedia.com/](https://easydocs.codeandmedia.com/) -Theme - - Installing & customising a theme - - Creating a theme +This theme for [Zola](https://getzola.org) (static site engine) helps you build and publish your project docs easily and fast. Zola is just one binary that outputs html-pages and additional static assets after building your docs written in Markdown. Thus, you can take the theme, your md-files, Zola and gain flexible and simple website for documentation. + +### Step-by-step + +As you may have heard Zola is quite flexible :) So, the scenario below is one of hundreds possible ways to make things done, feel free to find your best. Also, Zola provides their own mechanism to install and use themes, see [the docs](https://www.getzola.org/documentation/themes/installing-and-using-themes/). + +1. Fork the repo and replace demo-content inside content folder with yours. But take a look to _index.md files. It contains `title` and when you want to have anchor right of your headers add `insert_anchor_links = "right"` to each index. `theme.toml`, screenshot and readme may be deleted too. +2. Inside `config.toml` change URL and title on your own. In extra section you can specify path to your GitHub API for version below the logo on nav, favicon and logo itself. Or just remove the lines if you don't need it. Also, you can configure or turn on some additional settings related to Zola. [Specification is here](https://www.getzola.org/documentation/getting-started/configuration/). +3. In sass/_variables.scss you may change font, color or backgound if you want. +4. Almost done. Now, you should decide how you want to build and where will be hosted your website. You can build it locally and upload to somewhere. Or build in GitHub Actions and host on GitHub Pages / Netlify / CloudFlare Pages / AnyS3CloudStorage. [Howto for GitHub Pages](https://www.getzola.org/documentation/deployment/github-pages/). [My example](https://github.com/o365hq/o365hq.com/blob/main/.github/workflows/main.yml) of GitHub workflow with 2-steps build (the first checks for links and spelling errors, the second uploads to Azure). [Dockerfile](https://github.com/codeandmedia/zola_docsascode_theme/blob/master/Dockerfile) to make Docker image. + +Enjoy your docs! + +* _Icons: [Office UI Fabric Icons](https://uifabricicons.azurewebsites.net/)_ +* _Copy-code-button: [Aaron Luna](https://aaronluna.dev/blog/add-copy-button-to-code-blocks-hugo-chroma/)_ \ No newline at end of file diff --git a/sass/main.scss b/sass/main.scss index d5ead8e..f335bb5 100644 --- a/sass/main.scss +++ b/sass/main.scss @@ -89,7 +89,6 @@ pre { code { font: $code_font; - background: #eff1f5; } .copy-code-button { @@ -333,6 +332,10 @@ article { z-index:10; box-shadow: 0 2px 0 rgba(0,0,0,.1); } + + #on_right { + margin-top:$baseline; + } } @import "fabric-icons-inline"; diff --git a/screenshot.png b/screenshot.png new file mode 100644 index 0000000..fd7496a Binary files /dev/null and b/screenshot.png differ diff --git a/templates/index.html b/templates/index.html index 63ea8b6..5d5350e 100644 --- a/templates/index.html +++ b/templates/index.html @@ -3,9 +3,15 @@ + {% if config.extra.favicon %} + + {% endif %} + + {% block title %}{{ config.title }}{% endblock title %} + {% if config.extra.release %} - + {% endif %}
{% block nav %} @@ -53,8 +59,8 @@ - {% endif %} + {% endif %} - {% endfor %} + {% endfor %} - {% endif %} + {% endif %} -{% endif %} - - - {% endfor %} - - {% endfor %} - + {% endif %} + {% endfor %} + + {% endfor %} + + {% endblock nav %}
@@ -111,25 +116,20 @@ {% endif %} -
-{% block content %} - - - {{ section.content | safe }} - -{% endblock content %} -
+
+ {% block content %} + {{ section.content | safe }} + {% endblock content %} +
+
- - - -{% if config.build_search_index %} - - - -{% endif %} + {% if config.build_search_index %} + + + + {% endif %} \ No newline at end of file diff --git a/templates/page.html b/templates/page.html index f1f2c04..c836720 100644 --- a/templates/page.html +++ b/templates/page.html @@ -1,4 +1,5 @@ {% extends "index.html" %} +{% block title %} {{ config.title }} | {{ page.title }} {% endblock title %} {% block content %} {{ page.content | safe }} {% endblock content %} \ No newline at end of file diff --git a/theme.toml b/theme.toml new file mode 100644 index 0000000..2649a5b --- /dev/null +++ b/theme.toml @@ -0,0 +1,10 @@ +name = "EasyDocs" +description = "An easy way to create docs for your project" +license = "MIT" +homepage = "https://github.com/codeandmedia/zola_easydocs_theme" +min_version = "0.13.0" +demo = "https://easydocs.codeandmedia.com" + +[author] +name = "Roman Soldatenkov" +homepage = "https://codeandmedia.com" \ No newline at end of file