diff options
author | Zach Berwaldt <zberwaldt@tutamail.com> | 2023-01-30 22:16:34 -0500 |
---|---|---|
committer | Zach Berwaldt <zberwaldt@tutamail.com> | 2023-01-30 22:16:34 -0500 |
commit | 0e39b5cd5bd26d408355e01d46c356d093befe1c (patch) | |
tree | e613c63b16897b0bd7c48c26abd985c4ebdd78ad |
first commit
-rw-r--r-- | .gitignore | 34 | ||||
-rw-r--r-- | LICENSE | 20 | ||||
-rw-r--r-- | README.md | 8 | ||||
-rw-r--r-- | archetypes/default.md | 7 | ||||
-rw-r--r-- | assets/blackbear/.gitkeep | 0 | ||||
-rw-r--r-- | layouts/404.html | 0 | ||||
-rw-r--r-- | layouts/_default/baseof.html | 11 | ||||
-rw-r--r-- | layouts/_default/list.html | 0 | ||||
-rw-r--r-- | layouts/_default/single.html | 0 | ||||
-rw-r--r-- | layouts/index.html | 0 | ||||
-rw-r--r-- | layouts/partials/footer.html | 0 | ||||
-rw-r--r-- | layouts/partials/head.html | 0 | ||||
-rw-r--r-- | layouts/partials/header.html | 0 | ||||
-rw-r--r-- | theme.toml | 14 |
14 files changed, 94 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..abaa1d0 --- /dev/null +++ b/.gitignore | |||
@@ -0,0 +1,34 @@ | |||
1 | # OS | ||
2 | .DS_Store | ||
3 | Thumbs.db | ||
4 | |||
5 | # IDEs | ||
6 | .buildpath | ||
7 | .project | ||
8 | .settings/ | ||
9 | .build/ | ||
10 | .idea/ | ||
11 | public/ | ||
12 | nbproject/ | ||
13 | |||
14 | # Vagrant | ||
15 | .vagrant/ | ||
16 | |||
17 | # FE Setup | ||
18 | .bin/node_modules/ | ||
19 | /node_modules/ | ||
20 | src/node_modules/ | ||
21 | exampleSite/node_modules/ | ||
22 | src/npm-debug.log.* | ||
23 | npm-debug.log | ||
24 | /npm-debug.log* | ||
25 | /dist/ | ||
26 | /src/client.config.json | ||
27 | /styleguide/ | ||
28 | /docs/ | ||
29 | |||
30 | /junit.xml | ||
31 | partials/structure/stylesheet.html | ||
32 | |||
33 | # Hugo | ||
34 | .hugo_build.lock \ No newline at end of file | ||
@@ -0,0 +1,20 @@ | |||
1 | The MIT License (MIT) | ||
2 | |||
3 | Copyright (c) 2023 YOUR_NAME_HERE | ||
4 | |||
5 | Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
6 | this software and associated documentation files (the "Software"), to deal in | ||
7 | the Software without restriction, including without limitation the rights to | ||
8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
9 | the Software, and to permit persons to whom the Software is furnished to do so, | ||
10 | subject to the following conditions: | ||
11 | |||
12 | The above copyright notice and this permission notice shall be included in all | ||
13 | copies or substantial portions of the Software. | ||
14 | |||
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
diff --git a/README.md b/README.md new file mode 100644 index 0000000..597b8b4 --- /dev/null +++ b/README.md | |||
@@ -0,0 +1,8 @@ | |||
1 | # Blackbear, a hugo theme. | ||
2 | |||
3 | A hugo theme built from the ground up for my personal site. It is not open source. You do not have permission to use it. | ||
4 | |||
5 | ## Features | ||
6 | |||
7 | - Responsive | ||
8 | - Contact form \ No newline at end of file | ||
diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..4538e33 --- /dev/null +++ b/archetypes/default.md | |||
@@ -0,0 +1,7 @@ | |||
1 | --- | ||
2 | title: "{{ replace .File.ContentBaseName "-" " " | title }}" | ||
3 | date: {{ .Date }} | ||
4 | tags: [] | ||
5 | featured_image: "" | ||
6 | description: "" | ||
7 | --- \ No newline at end of file | ||
diff --git a/assets/blackbear/.gitkeep b/assets/blackbear/.gitkeep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/assets/blackbear/.gitkeep | |||
diff --git a/layouts/404.html b/layouts/404.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/layouts/404.html | |||
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..5f8e2ec --- /dev/null +++ b/layouts/_default/baseof.html | |||
@@ -0,0 +1,11 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html> | ||
3 | {{- partial "head.html" . -}} | ||
4 | <body> | ||
5 | {{- partial "header.html" . -}} | ||
6 | <div id="content"> | ||
7 | {{- block "main" . }}{{- end }} | ||
8 | </div> | ||
9 | {{- partial "footer.html" . -}} | ||
10 | </body> | ||
11 | </html> | ||
diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/layouts/_default/list.html | |||
diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/layouts/_default/single.html | |||
diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/layouts/index.html | |||
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/layouts/partials/footer.html | |||
diff --git a/layouts/partials/head.html b/layouts/partials/head.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/layouts/partials/head.html | |||
diff --git a/layouts/partials/header.html b/layouts/partials/header.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/layouts/partials/header.html | |||
diff --git a/theme.toml b/theme.toml new file mode 100644 index 0000000..a3c0e12 --- /dev/null +++ b/theme.toml | |||
@@ -0,0 +1,14 @@ | |||
1 | # theme.toml template for a Hugo theme | ||
2 | # See https://github.com/gohugoio/hugoThemes#themetoml for an example | ||
3 | |||
4 | name = "Blackbear" | ||
5 | licenselink = "https://github.com/yourname/yourtheme/blob/master/LICENSE" | ||
6 | description = "The Blackbear theme is a minimal theme for Hugo." | ||
7 | homepage = "https://github.com/zberwaldt/blackbear" | ||
8 | tags = ["website", "starter", "responsive", "blog"] | ||
9 | features = ["posts", "shortcodes", "related content"] | ||
10 | min_version = "0.92.2" | ||
11 | |||
12 | [author] | ||
13 | name = "Z" | ||
14 | homepage = "https://www.zachberwaldt.com" | ||