initial commit
This commit is contained in:
commit
a6261020ee
130 changed files with 3179 additions and 0 deletions
79
content/about/index.md
Normal file
79
content/about/index.md
Normal file
|
@ -0,0 +1,79 @@
|
|||
+++
|
||||
date = "2016-11-05T21:05:33+05:30"
|
||||
title = "About"
|
||||
+++
|
||||
|
||||
A minimal and responsive Hugo theme inspired by the system console, crafted for optimal performance with an average page load time of under one second.
|
||||
|
||||
Theme is based on a modern and minimal [Terminal CSS](https://terminalcss.xyz/) framework.
|
||||
|
||||

|
||||
|
||||
## Live demo
|
||||
|
||||
* [https://mrmierzejewski.com/hugo-theme-console/](https://mrmierzejewski.com/hugo-theme-console/)
|
||||
|
||||
## Installation
|
||||
|
||||
From the root of your Hugo site, clone the theme into ```themes/hugo-theme-console``` by running :
|
||||
|
||||
```
|
||||
$ git submodule add https://github.com/mrmierzejewski/hugo-theme-console.git hugo-theme-console
|
||||
```
|
||||
|
||||
See the [Hugo documentation](https://gohugo.io/hugo-modules/theme-components/) for more information.
|
||||
|
||||
## Configuration
|
||||
|
||||
Set theme parameter in your config file:
|
||||
|
||||
```
|
||||
theme = "hugo-theme-console"
|
||||
```
|
||||
|
||||
## Quick start
|
||||
|
||||
After installation, take a look in the `exampleSite` folder at. This directory contains an example config file and the content for the demo.
|
||||
|
||||
```
|
||||
exampleSite
|
||||
├── config.toml
|
||||
├── content
|
||||
│ ├── about
|
||||
│ │ └── index.md
|
||||
│ └── photos
|
||||
│ │ └── arizona-us
|
||||
│ │ ├── arizona-us.jpg
|
||||
│ │ └── index.md
|
||||
│ └── posts
|
||||
│ └── introduction
|
||||
│ └── index.md
|
||||
├── layouts
|
||||
│
|
||||
└── static
|
||||
```
|
||||
|
||||
Copy at least the `config.toml` in the root directory of your website. Overwrite the existing config file if necessary.
|
||||
|
||||
Hugo includes a development server, so you can view your changes as you go -
|
||||
very handy. Spin it up with the following command:
|
||||
|
||||
```
|
||||
hugo serve
|
||||
```
|
||||
|
||||
Now you can go to [http://localhost:1313](http://localhost:1313) and the theme should be visible.
|
||||
|
||||
## Example Site
|
||||
|
||||
To run the example site, please type the following command.
|
||||
|
||||
```
|
||||
make hugo-server
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
Copyright © 2024 [Marcin Mierzejewski](https://mrmierzejewski.com/)
|
||||
|
||||
The theme is released under the MIT License. Check the [original theme license](https://github.com/panr/hugo-theme-terminal/blob/master/LICENSE.md) for additional licensing information.
|
Loading…
Add table
Add a link
Reference in a new issue