-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* copy showtime-theme-2021 to showtime-theme-2024 - commit 20b1090e41e42f6cf27fcabd52f19281fb43befd tag: last_version_as_submodule * config new theme, delete old theme folder * remove get theme from gh actions * remove theme from readme * add old theme to gitignore * remove deploy-production-without-archive.yml
- Loading branch information
Showing
77 changed files
with
3,171 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ jobs: | |
with: | ||
submodules: true | ||
|
||
|
||
- name: Hugo setup | ||
uses: peaceiris/actions-hugo@v3 | ||
with: | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,4 @@ hugo-temp/ | |
tmp/ | ||
files-other.txt | ||
files-project.txt | ||
themes/showtime-theme-2021/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule showtime-theme-2021
deleted from
20b109
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.DS_Store | ||
Thumbs.db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
## Thursday, 13.June 2024 12:33 | ||
|
||
blocks are not supported within partials, see | ||
https://github.com/gohugoio/hugo/issues/7936 | ||
|
||
-> include header and footer in baseof.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Showtime Hugo Theme | ||
The new 2021 Hugo showtime theme! | ||
|
||
## Structure | ||
|
||
### `archetypes/` | ||
Contains templates for generating new pages using the Hugo CLI. | ||
|
||
### `assets/` | ||
The assets folder contains files that should be processed by Hugo before being served. This includes assets like SCSS. | ||
|
||
### `layouts/` | ||
The layouts folder contains the HTML templates for this theme. | ||
* `index.html` - Contains the home page's layout | ||
* `_default/` | ||
* `baseof.html` - Contains the base structure of the site which should be always applied | ||
* `list.html` - Contains the layout for the index pages of the different sections (e.g. ss20, ...) | ||
* `project.html` - Contains the layout for the project pages | ||
* `projects-list.html` - Contains the layout for the projects list for the current semester | ||
* `single.html` - Contains the layout for all single pages, like the imprint | ||
* `partials/` - Contains partial templates to be included/reused in other templates for this theme | ||
* `shortcodes/` - Contains partials which can be included in markdown pages | ||
|
||
### `static/` | ||
The static folder contains files that should be served without being processed by Hugo. You may put files like images, CSS or scripts into this folder. | ||
|
||
### `theme.toml` | ||
Contains metadata about the theme (e.g. theme name, author, description) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
+++ | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
$color-primary: #ff7578; | ||
$color-accent: #fdfe83; | ||
$color-link: #29d09f; | ||
$color-dark: #3e2d4a; | ||
|
||
$color-background: #fff6f6; | ||
$color-secondary: #ff927a; | ||
$color-link-dark: #0ad0a1; | ||
|
||
$color-dropdown: #67ffd2; | ||
$color-button-active: #1CA37B; |
Oops, something went wrong.