1
0
mirror of https://github.com/openSUSE/umoci.git synced 2026-02-05 09:44:53 +01:00

.site: bare hugo site with theme [ci skip]

This is a bare Hugo site with no other pages. The theme is
"hugo-theme-learn", with the Green variant. At the moment there's
no pages visible.

Signed-off-by: Aleksa Sarai <asarai@suse.de>
This commit is contained in:
Aleksa Sarai
2017-10-06 13:09:56 +11:00
parent 4b11de4885
commit 39113f0ced
5 changed files with 52 additions and 0 deletions

3
.gitmodules vendored Normal file
View File

@@ -0,0 +1,3 @@
[submodule ".site/themes/hugo-theme-learn"]
path = .site/themes/hugo-theme-learn
url = https://github.com/matcornic/hugo-theme-learn.git

1
.site/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
public

19
.site/README.md Normal file
View File

@@ -0,0 +1,19 @@
## `.site/` ##
This is the source code for the website hosted at [`umo.ci`][umoci]. The reason
for this weird structure is so that we can still have a top-level `doc/`
directory which is then included as a chapter inside the website.
The website uses [Hugo][hugo], and can be rebuilt with a simple `hugo`. To have
a development webserver use `hugo serve`. For more information, read the docs.
[umoci]: https://umo.ci/
[hugo]: https://gohugo.io/
### License ###
As with the rest of `umoci`, the website is licensed under the Apache 2.0
license. The theme [`hugo-theme-learn`][hugo-theme] is licensed under the
MIT/X11 license.
[hugo-theme]: https://github.com/matcornic/hugo-theme-learn

28
.site/config.toml Normal file
View File

@@ -0,0 +1,28 @@
# umoci: Umoci Modifies Open Containers' Images
# Copyright (C) 2017 SUSE LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
baseURL = "https://umo.ci/"
languageCode = "en-us"
title = "umoci"
theme = "hugo-theme-learn"
[params]
author = "Aleksa Sarai"
description = "Documentation for umoci -- a tool for modifying OCI images."
showVisitedLinks = false
themeVariant = "green"
[output]
home = ["HTML", "RSS", "JSON"]