Adding gitlab ci file.

This commit is contained in:
Dan Chadwick
2024-03-10 21:44:34 +00:00
parent d55838a927
commit 0d77a3eeea
219 changed files with 15260 additions and 130 deletions

View File

@@ -0,0 +1,12 @@
body {
background: whitesmoke;
}
header {
background: #232323;
color: white;
}
.smooth {
transition: all 1s ease-in;
}

View File

@@ -0,0 +1,15 @@
name: DChadwick Custom Theme
type: theme
description: 'My custom theme...for fun'
package: Other
core_version_requirement: ^9 || ^10
libraries:
- dchadwick/global-styling
- dchadwick/htmx
base theme: stark
regions:
navigation: Main navigation
content: Content
footer_bottom: Footer Bottom

View File

@@ -0,0 +1,17 @@
global-styling:
version: 1.x
js:
js/global.js: {}
css:
theme:
css/style.css: {}
htmx:
remote: https://github.com/bigskysoftware/htmx
version: 1.9.10
license:
name: Zero-Clause BSD
url: https://github.com/bigskysoftware/htmx/blob/master/LICENSE
gpl-compatible: true
js:
https://github.com/bigskysoftware/htmx/blob/v1.9.10/dist/htmx.min.js: { type: external, minified: true }

View File

@@ -0,0 +1 @@
console.log("hello from my custom js file.")

View File

@@ -0,0 +1,19 @@
<header aria-label="Site header" class="header" id="header" role="banner">
{{ page.navigation }}
<div id="color-demo" class="smooth" style="color:red"
hx-get="/colors" hx-swap="outerHTML" hx-trigger="every 1s">
Color Swap Demo
</div>
</header>
<section class="main" id="main">
<main aria-label="Site main content" class="content" id="content" role="main">
{{ page.content }}
</main>
</section>
<footer aria-label="Site footer" class="footer" id="footer" role="contentinfo">
<div class="footer--bottom">
{{ page.footer_bottom }}
</div>
</footer>