Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README.md - github.com/J-Siu/hugo-theme-sk1.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 879c1e44e925ef856828c9461c7e461d09907ae9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
## Hugo Theme - SK1 (Skeleton 1)

Fully functional basic Hugo theme with no css, no javascript.

Intended for learning hugo theme structure and functions.

### Demo

SK1 demo site: https://sk1.jsiu.dev/

SK1 demo site content from [hugoBasicExample](https://github.com/gohugoio/hugoBasicExample)

### Install

In site directory:

- Using clone

  ```sh
  git clone https://github.com/J-Siu/hugo-theme-sk1 theme/sk1
  ```

- Using submodule

  ```sh
  git submodule add https://github.com/J-Siu/hugo-theme-sk1 theme/sk1
  ```

- Update submodule

  ```sh
  git submodule update --recursive --remote
  ```

### Testing

```sh
git clone https://github.com/J-Siu/hugo-theme-sk1 sk1
cd sk1

# Pull example site.
git submodule update --recursive --init

cd exampleSite
hugo server -D --bind :: \
--disableFastRender \
--theme sk1 \
--themesDir ../../ \
--config config.toml,../config.demo.toml \
--verbose
```

### Hugo Features Implemented

- layouts
  - _default
    - baseof.html
      - [ ] No change, auto generated by Hugo
    - list.html
      - [x] `.Site.Params.mainSections` for home page listing.
      - [x] Pagination
    - single.html
      - [x] Content
      - [x] Date
      - [x] Next/Prev
      - [x] Related
      - [x] Tags
      - [x] ToC
  - partials
    - footer.html
      - [x] Site.Params.copyright
    - head.html
      - [ ] No change, auto generated by Hugo
    - header.html
      - [x] Site.Params.subtitle
  - 404.html
    - [x] Text "Page Not Found."
  - index.html
    - [x] Deleted. Merged with list.html

### Site Config

```toml
baseURL = "https://sk1.jsiu.dev"
theme   = "sk1"
title   = "SK1"

[Params]
mainSections = "post"
subtitle = "A Hugo Theme"
```

### Repository

- [hugo-theme-sk1](https://github.com/J-Siu/hugo-theme-sk1)

### Contributors

- [John Sing Dao Siu](https://github.com/J-Siu)

### Change Log

- 1.0.0
  - Initial Commit
- 1.0.1
  - Add images
  - README.md update
  - Use site.Params.mainSections