|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
-
- +++
- title = "hallo"
- description = "A single-page theme to introduce yourself."
- template = "theme.html"
- date = 2019-06-05T15:08:48+02:00
-
- [extra]
- created = 2019-07-12T23:55:11+02:00
- updated = 2019-06-05T15:08:48+02:00
- repository = "https://github.com/flyingP0tat0/zola-hallo.git"
- homepage = "https://github.com/janbaudisch/zola-hallo"
- minimum_version = "0.4.0"
- license = "MIT"
- demo = "https://zola-hallo.janbaudisch.dev"
-
- [extra.author]
- name = "Jan Baudisch"
- homepage = "https://janbaudisch.dev"
- +++
-
- [![Build Status][build-img]][build-url]
- [![Demo][demo-img]][demo-url]
-
- # Hallo
-
- > A single-page theme to introduce yourself.
- >
- > [Zola][zola] port of [hallo-hugo][hallo-hugo].
-
- ![Screenshot](screenshot.png)
-
- ## Original
-
- This is a port of the original [hallo-hugo][hallo-hugo] theme for Hugo ([License][upstream-license]).
-
- ## Installation
-
- The easiest way to install this theme is to either clone it ...
-
- ```
- git clone https://github.com/janbaudisch/zola-hallo.git themes/hallo
- ```
-
- ... or to use it as a submodule.
-
- ```
- git submodule add https://github.com/janbaudisch/zola-hallo.git themes/hallo
- ```
-
- Either way, you will have to enable the theme in your `config.toml`.
-
- ```toml
- theme = "hallo"
- ```
-
- ### Introduction
-
- The introduction text is included from `templates/partials/introduction.html`.
-
- You will need to create this file and fill it with content.
-
-
- ## Options
-
- See [`config.toml`][config] for an example configuration.
-
- ### Author
-
- The given name will be used for the 'I am ...' text.
-
- Default: `Hallo`
-
- ```toml
- [extra.author]
- name = "Hallo"
- ```
-
- ### Greeting
-
- The string will be used as a greeting.
-
- Default: `Hello!`
-
- ```toml
- [extra]
- greeting = "Hello!"
- ```
-
- ### `iam`
-
- This variable defines the `I am` text, which you may want to swap out for another language.
-
- Default: `I am`
-
- ```toml
- [extra]
- iam = "I am"
- ```
-
- ### Links
-
- Links show up below the introduction. They are styled with [Font Awesome][fontawesome], you may optionally choose the iconset (default is [brands][fontawesome-brands]).
-
- ```toml
- [extra]
- links = [
- { title = "E-Mail", url = "mailto:mail@example.org", iconset = "fas", icon = "envelope" },
- { title = "GitHub", url = "https://github.com", icon = "github" },
- { title = "Twitter", url = "https://twitter.com", icon = "twitter" }
- ]
- ```
-
- ### Theme
-
- Change the colors used.
-
- ```toml
- [extra.theme]
- background = "#6FCDBD"
- foreground = "#FFF" # text and portrait border
- hover = "#333" # link hover
- ```
-
- [build-img]: https://travis-ci.com/janbaudisch/zola-hallo.svg?branch=master
- [build-url]: https://travis-ci.com/janbaudisch/zola-hallo
- [demo-img]: https://img.shields.io/badge/demo-live-green.svg
- [demo-url]: https://zola-hallo.janbaudisch.dev
- [zola]: https://www.getzola.org
- [hallo-hugo]: https://github.com/EmielH/hallo-hugo
- [fontawesome]: https://fontawesome.com
- [fontawesome-brands]: https://fontawesome.com/icons?d=gallery&s=brands&m=free
- [upstream-license]: https://github.com/janbaudisch/zola-hallo/blob/master/upstream/LICENSE
- [config]: https://github.com/janbaudisch/zola-hallo/blob/master/config.toml
-
-
|