Philipp Deppenwiese (zaolin.daisuki@googlemail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15534
-gerrit
commit 6228eb6d3c600c1abb11b784d098a6113dca21bc Author: Philipp Deppenwiese zaolin@das-labor.org Date: Sat Jul 2 01:26:49 2016 +0200
Documentation: Add Hugo static documentation site.
This change includes basic assets and default configuration.
Change-Id: I6dfef049901ae635029e4ca9aa6b4ab2f48dbb8c Signed-off-by: Philipp Deppenwiese zaolin@das-labor.org --- Documentation/.gitignore | 1 + Documentation/archetypes/.empty | 0 Documentation/config.toml | 53 +++++++++++++++++++++++++++++++++++ Documentation/content/.empty | 0 Documentation/data/.empty | 0 Documentation/layouts/.empty | 0 Documentation/static/favicon.ico | Bin 0 -> 15086 bytes Documentation/static/images/logo.png | Bin 0 -> 2236 bytes 8 files changed, 54 insertions(+)
diff --git a/Documentation/.gitignore b/Documentation/.gitignore new file mode 100644 index 0000000..364fdec --- /dev/null +++ b/Documentation/.gitignore @@ -0,0 +1 @@ +public/ diff --git a/Documentation/archetypes/.empty b/Documentation/archetypes/.empty new file mode 100644 index 0000000..e69de29 diff --git a/Documentation/config.toml b/Documentation/config.toml new file mode 100644 index 0000000..8c060fc --- /dev/null +++ b/Documentation/config.toml @@ -0,0 +1,53 @@ +baseurl = "http://docs.coreboot.org" +languageCode = "en-us" +title = "Coreboot Documentation" +theme = "hugo-material-docs" +metadataformat = "yaml" +canonifyurls = true +googleAnalytics = "" + +[params] + # General information + author = "Coreboot Developers" + description = "The documentation base of coreboot." + copyright = "GPLv2" + + # Repository + provider = "Gerrit" + repo_url = "https://review.coreboot.org" + + version = "" + logo = "images/logo.png" + favicon = "favicon.ico" + + permalink = "#" + + # Custom assets + custom_css = [] + custom_js = [] + + # Syntax highlighting theme + highlight_css = "" + +[params.palette] + primary = "grey" + accent = "blue grey" + +[params.font] + text = "Ubuntu" + code = "Ubuntu Mono" + +[social] + twitter = "coreboot_org" + github = "coreboot" + +[[menu.main]] + name = "The Project" + url = "/" + weight = 0 + +[blackfriday] + smartypants = true + fractions = true + smartDashes = true + plainIDAnchors = true diff --git a/Documentation/content/.empty b/Documentation/content/.empty new file mode 100644 index 0000000..e69de29 diff --git a/Documentation/data/.empty b/Documentation/data/.empty new file mode 100644 index 0000000..e69de29 diff --git a/Documentation/layouts/.empty b/Documentation/layouts/.empty new file mode 100644 index 0000000..e69de29 diff --git a/Documentation/static/favicon.ico b/Documentation/static/favicon.ico new file mode 100644 index 0000000..ca4d789 Binary files /dev/null and b/Documentation/static/favicon.ico differ diff --git a/Documentation/static/images/logo.png b/Documentation/static/images/logo.png new file mode 100644 index 0000000..dde1aa6 Binary files /dev/null and b/Documentation/static/images/logo.png differ