~groovestomp/groovestomp.srht.site

e0baee7e6638eab0e1c1a941789c2287dec055f9 — Aaron Oman 1 year, 2 months ago 5c5545d
Hugo site
M .build.yml => .build.yml +3 -1
@@ 1,12 1,14 @@
image: alpine/edge
oauth: pages.sr.ht/PAGES:RW
packages:
- hugo
- hut
environment:
  site: www.orkaskateboarding.ca
tasks:
- package: |
    cd groovestomp.srht.site
    tar -cvz . > ../site.tar.gz
    hugo
    tar -C public -cvz . > ../site.tar.gz
- upload: |
    hut pages publish -d $site site.tar.gz

M .gitignore => .gitignore +1 -0
@@ 1,2 1,3 @@
site.tar.gz
*~
.hugo_build.lock

A .gitmodules => .gitmodules +3 -0
@@ 0,0 1,3 @@
[submodule "themes/hugo-universal-theme"]
	path = themes/hugo-universal-theme
	url = https://github.com/devcows/hugo-universal-theme

A archetypes/default.md => archetypes/default.md +6 -0
@@ 0,0 1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---


A config.toml => config.toml +46 -0
@@ 0,0 1,46 @@
baseURL = "https://www.orkaskateboarding.ca/"
languageCode = "en-us"
title = "Orka Skateboarding"
style = "default"
theme = "hugo-universal-theme"

[params]
disabled_logo = true
logo_text = "Orka Skateboarding"
logo = "img/logo.png"
logo_small = "img/logo-small.png"

copyright = "Copyright (c) 2023, Orka Skateboarding; all rights reserved."

# Social media
facebook_site = ""
instagram_site = "https://www.instagram.com/orkaskateboarding/"
default_sharing_image = "img/sharing-default.png"

[params.topbar]
enable = true

[[menu.main]]
name = "Home"
identifier = "section.home"
url = "/"
weight = 1

[[menu.main]]
name = "About Us"
identifer = "section.about"
url = "/about_us"
weight = 2

# Top bar social links menu
[[menu.topbar]]
weight = 1
name = "Instagram"
url = "https://www.instagram.com/orkaskateboarding/"
pre = "<i class='fab fa-2x fa-instagram'></i>"

#[[menu.topbar]]
#weight = 2
#name = "Facebook"
#url = ""
#pre = "<i class='fab fa-2x fa-facebook'></i>"

A content/about_us.md => content/about_us.md +7 -0
@@ 0,0 1,7 @@
+++
title = "About Us"
+++

We're two kids from western Canada who first connected with skateboarding in the late '80s.  We skated for years in the 90s and 2000s, never getting good; but here we are in the prime of our lives loving skateboarding more than ever.

We're excited to bring you high quality, Canadian-made skateboarding goods.

D index.html => index.html +0 -6
@@ 1,6 0,0 @@
<!doctype html>
<html lang="en">
<meta charset="utf-8"/>
<title>Orka Skateboarding</title>
<h1>Orka Skateboarding</h1>
<p>Coming soon</p>

A public/categories/index.xml => public/categories/index.xml +10 -0
@@ 0,0 1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Categories on My New Hugo Site</title>
    <link>http://example.org/categories/</link>
    <description>Recent content in Categories on My New Hugo Site</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language><atom:link href="http://example.org/categories/index.xml" rel="self" type="application/rss+xml" />
  </channel>
</rss>

A public/index.xml => public/index.xml +10 -0
@@ 0,0 1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>My New Hugo Site</title>
    <link>http://example.org/</link>
    <description>Recent content on My New Hugo Site</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language><atom:link href="http://example.org/index.xml" rel="self" type="application/rss+xml" />
  </channel>
</rss>

A public/sitemap.xml => public/sitemap.xml +11 -0
@@ 0,0 1,11 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
  xmlns:xhtml="http://www.w3.org/1999/xhtml">
  <url>
    <loc>http://example.org/categories/</loc>
  </url><url>
    <loc>http://example.org/</loc>
  </url><url>
    <loc>http://example.org/tags/</loc>
  </url>
</urlset>

A public/tags/index.xml => public/tags/index.xml +10 -0
@@ 0,0 1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Tags on My New Hugo Site</title>
    <link>http://example.org/tags/</link>
    <description>Recent content in Tags on My New Hugo Site</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language><atom:link href="http://example.org/tags/index.xml" rel="self" type="application/rss+xml" />
  </channel>
</rss>

A themes/hugo-universal-theme => themes/hugo-universal-theme +1 -0
@@ 0,0 1,1 @@
Subproject commit cf0336a1758491e3375358d59f8bc64065f6d75b