5 Commits

Author SHA1 Message Date
f53ffb555f changie added
All checks were successful
Build an image to deploy website / build (push) Successful in 1m39s
2024-01-24 19:16:34 +01:00
548d005c21 change button styling 2024-01-24 19:15:13 +01:00
1cd6c41715 Merge pull request 'Setup gitea action to build the website, build docker image and push it on registry' (#2) from gitea-ci into main
Reviewed-on: #2
2024-01-24 17:55:23 +00:00
022dd5b48b Add changie 2024-01-24 14:28:08 +01:00
bf02657481 Setup gitea action to build the website, build docker image and push it on registry 2024-01-24 14:23:07 +01:00
8 changed files with 71 additions and 1 deletions

3
.changes/1.0.0.md Normal file
View File

@@ -0,0 +1,3 @@
## 1.0.0 - 2024-01-24
### Added
* Started brand new website

3
.changes/2.0.0.md Normal file
View File

@@ -0,0 +1,3 @@
## 2.0.0 - 2024-01-24
### Changed
* Button styling updated to match the other buttons

6
.changes/header.tpl.md Normal file
View File

@@ -0,0 +1,6 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).

View File

26
.changie.yaml Normal file
View File

@@ -0,0 +1,26 @@
changesDir: .changes
unreleasedDir: unreleased
headerPath: header.tpl.md
changelogPath: CHANGELOG.md
versionExt: md
versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}'
kindFormat: '### {{.Kind}}'
changeFormat: '* {{.Body}}'
kinds:
- label: Added
auto: minor
- label: Changed
auto: major
- label: Deprecated
auto: minor
- label: Removed
auto: major
- label: Fixed
auto: patch
- label: Security
auto: patch
newlines:
afterChangelogHeader: 1
beforeChangelogVersion: 1
endOfVersion: 1
envPrefix: CHANGIE_

3
.gitignore vendored
View File

@@ -14,4 +14,5 @@ resources
jsconfig.json
hugo_stats.json
go.sum
yarn.lock
yarn.lock
.idea/*

15
CHANGELOG.md Normal file
View File

@@ -0,0 +1,15 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).
## 2.0.0 - 2024-01-24
### Changed
* Button styling updated to match the other buttons
## 1.0.0 - 2024-01-24
### Added
* Started brand new website

View File

@@ -92,6 +92,18 @@ header.header {
padding-top: 0rem;
}
.navbar {
.btn-primary {
background-color: $orange;
border: 1px solid $orange;
color: white;
&:hover {
background-color: $chill-orange;
border: 1px solid $chill-orange;
}
}
}
main > section {
&.hero {
height: 100vh;
@@ -104,6 +116,10 @@ main > section {
background-color: $orange;
color: white;
border-color: $orange;
&:hover {
background-color: $chill-orange;
border: 1px solid $chill-orange;
}
}
}
&.section-1 {