Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 18 additions & 16 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,28 @@ on:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
deploy:
runs-on: ubuntu-22.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

steps:
- uses: actions/checkout@v2
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- uses: actions/checkout@v2
with:
submodules: true
fetch-depth: 0

- name: Hugo setup
uses: peaceiris/actions-hugo@v2.4.13
with:
hugo-version: '0.18.1'
- name: Hugo setup
uses: peaceiris/actions-hugo@v3
with:
hugo-version: '0.119.0'

- name: Build
run: hugo --minify
- name: Build
run: hugo --minify

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
2 changes: 1 addition & 1 deletion CNAME
Original file line number Diff line number Diff line change
@@ -1 +1 @@
hypriot.dapla.net
hypriot.io
8 changes: 0 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,6 @@ hugo server --watch=true -D
- Create a PR and ask the Hypriot Team for review


Buy us a beer!
------------------------

This FLOSS software is funded by donations only. Please support us to maintain and further improve it!

<a href="https://liberapay.com/Hypriot/donate"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a>


License
--------
<img src="http://www.creativecommons.ch/wp-content/uploads/2014/03/by-nc1.png" width="88" height="31" />
Expand Down
4 changes: 1 addition & 3 deletions themes/hyde/layouts/partials/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<link href="http://gmpg.org/xfn/11" rel="profile">
<meta http-equiv="content-type" content="text/html; charset=utf-8">

<meta name="cf-2fa-verify" content="44c0b92048e2aaf">
<!-- Enable responsiveness on mobile devices-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">

Expand All @@ -20,7 +20,5 @@
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144-precomposed.png">
<link rel="shortcut icon" href="/favicon.ico">

<!-- RSS -->
<link href="{{ .RSSlink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
{{ partial "google_analytics.html" . }}
</head>
2 changes: 1 addition & 1 deletion themes/hyde/layouts/partials/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h1><a href="/">{{ .Site.Title }}</a></h1>
{{end}}
</ul>

<p>{{ with .Site.Params.Copyright }}{{.}}{{ else }}&copy; {{.Now.Format "2006"}} Hypriot {{end}}</p>
<p>{{ with .Site.Params.Copyright }}{{.}}{{ else }}&copy; 2006-2020 Hypriot {{end}}</p>
<p><a href="/legal_notice" style="font-size: 1rem;">Legal Notice</a></p>
<div class="edit-github" id="edit-github-id">
<p>
Expand Down