Skip to content

Commit

Permalink
Add new structure
Browse files Browse the repository at this point in the history
  • Loading branch information
CroutonDigital committed Mar 8, 2024
1 parent 48c64d6 commit b5f14a0
Show file tree
Hide file tree
Showing 14 changed files with 151 additions and 232 deletions.
76 changes: 76 additions & 0 deletions .github/workflows/hugo.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# Sample workflow for building and deploying a Hugo site to GitHub Pages
name: Deploy Hugo site to Pages

on:
# Runs on pushes targeting the default branch
push:
branches:
- main

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

# Default to bash
defaults:
run:
shell: bash

jobs:
# Build job
build:
runs-on: ubuntu-latest
env:
HUGO_VERSION: 0.118.2
steps:
- name: Install Hugo CLI
run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
- name: Install Node.js dependencies
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
- name: Build with Hugo
env:
# For maximum backward compatibility with Hugo modules
HUGO_ENVIRONMENT: production
HUGO_ENV: production
run: |
hugo \
--gc \
--minify \
--baseURL "${{ steps.pages.outputs.base_url }}/"
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./public

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
6 changes: 0 additions & 6 deletions .gitignore

This file was deleted.

3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "themes/lotusdocs"]
path = themes/lotusdocs
url = https://github.com/colinwilson/lotusdocs
25 changes: 0 additions & 25 deletions 404.html

This file was deleted.

33 changes: 0 additions & 33 deletions Gemfile

This file was deleted.

97 changes: 0 additions & 97 deletions Gemfile.lock

This file was deleted.

1 change: 0 additions & 1 deletion README.md

This file was deleted.

44 changes: 0 additions & 44 deletions _config.yml

This file was deleted.

1 change: 0 additions & 1 deletion _includes/footer_custom.html

This file was deleted.

10 changes: 0 additions & 10 deletions docs/test.md

This file was deleted.

9 changes: 0 additions & 9 deletions docs/test2.md

This file was deleted.

71 changes: 71 additions & 0 deletions hugo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
baseURL = '/'
languageCode = 'en-us'
title = 'Prosphora help'
contentDir = "content"
enableEmoji = true

defaultContentLanguage = 'en'
[languages]
[languages.en]
title = "Lotus Docs Example Site"
languageName = "English"
weight = 10
# [languages.fr]
# title = "Lotus Docs Exemple de Site"
# languageName = "Français"
# contentDir = "content/fr"
# weight = 20
# [languages.de]
# title = "Lotus Docs Beispiel Site"
# languageName = "Deutsch"
# contentDir = "content/de"
# weight = 30

[module]
# uncomment line below for temporary local development of module
# or when using a 'theme' as a git submodule
replacements = "github.com/colinwilson/lotusdocs -> lotusdocs"
[module.hugoVersion]
extended = true
min = "0.100.0"
[[module.imports]]
path = "github.com/colinwilson/lotusdocs"
disable = false
[[module.imports]]
path = "github.com/gohugoio/hugo-mod-bootstrap-scss/v5"
disable = false

[markup]
defaultMarkdownHandler = "goldmark"
[markup.tableOfContents]
endLevel = 3
startLevel = 1
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true # https://jdhao.github.io/2019/12/29/hugo_html_not_shown/
# [markup.highlight]
# codeFences = false # disables Hugo's default syntax highlighting
# [markup.goldmark.parser]
# [markup.goldmark.parser.attribute]
# block = true
# title = true


[menu]
[[menu.primary]]
name = "Docs"
url = "docs/"
identifier = "docs"
weight = 10

# [[menu.primary]]
# name = "Showcase"
# url = "/showcase"
# identifier = "showcase"
# weight = 20

[[menu.primary]]
name = "Community"
url = "https://www.svetek.com"
identifier = "community"
weight = 30
Loading

0 comments on commit b5f14a0

Please sign in to comment.