Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mansoorbarri/brit-hugo
A hugo theme inspired by brittanychiang.com
https://github.com/mansoorbarri/brit-hugo
Last synced: about 1 month ago
JSON representation
A hugo theme inspired by brittanychiang.com
- Host: GitHub
- URL: https://github.com/mansoorbarri/brit-hugo
- Owner: mansoorbarri
- Created: 2024-02-14T15:51:02.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-02-15T02:00:42.000Z (12 months ago)
- Last Synced: 2024-11-07T06:32:41.722Z (3 months ago)
- Language: HTML
- Homepage: https://brit-hugo.pages.dev
- Size: 537 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# brit-hugo
A hugo theme inspired by brittanychiang.com## Setup
make a test site
```
hugo new site test-brithugo
```cd & clone the theme
```
cd && test-brithugo && git clone https://github.com/mansoorbarri/brit-hugo themes/brit-hugo
```copy `config.toml`
```
cp themes/brit-hugo/examplesite/config.toml .
```run at localhost
```
hugo server
```## Code standards
### General- use descriptive `tag`, `class` or any other identifable property
- css properties should be in alphabetical order. For example:**Good example:**
```css
.element {
color: grey;
display: flex;
text-decoratoin: none;
}
```**Bad example:**
```css
.element {
text-decoratoin: none;
display: flex;
color: grey;
}
```### Pushing code:
use: `fix`, `add`, `update` or `remove` as the commit message. Like:
```
commit -m "update: README.md"
```![](/_internal/commit-message.png)
---