|
@ -2,4 +2,3 @@
|
||||||
[module.hugoVersion]
|
[module.hugoVersion]
|
||||||
extended = true
|
extended = true
|
||||||
min = "0.87.0"
|
min = "0.87.0"
|
||||||
max = "0.112.0"
|
|
|
@ -76,6 +76,10 @@ Real websites that are built with Blowfish.
|
||||||
| [clemsau.com](https://clemsau.com/) | Personal site |
|
| [clemsau.com](https://clemsau.com/) | Personal site |
|
||||||
| [lelouvincx.github.io](https://lelouvincx.github.io/) | Personal site |
|
| [lelouvincx.github.io](https://lelouvincx.github.io/) | Personal site |
|
||||||
| [weaxsey.org](https://weaxsey.org/) | Personal site |
|
| [weaxsey.org](https://weaxsey.org/) | Personal site |
|
||||||
|
| [nikarashihatsu.github.io](https://nikarashihatsu.github.io/) | Personal site |
|
||||||
|
| [blog.enmanuelmoreira.com](https://blog.enmanuelmoreira.com) | Personal site |
|
||||||
|
| [halcyonstraits.com](https://www.halcyonstraits.com/) | Doll photography |
|
||||||
|
|
||||||
|
|
||||||
{{< alert >}}
|
{{< alert >}}
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ article:
|
||||||
part_of_series: "Cet article fait partie d'une série."
|
part_of_series: "Cet article fait partie d'une série."
|
||||||
part: "Partie"
|
part: "Partie"
|
||||||
this_article: "Cet article"
|
this_article: "Cet article"
|
||||||
related_articles: "Related"
|
related_articles: "Articles connexes"
|
||||||
|
|
||||||
author:
|
author:
|
||||||
byline_title: "Auteur"
|
byline_title: "Auteur"
|
||||||
|
@ -30,7 +30,7 @@ code:
|
||||||
error:
|
error:
|
||||||
404_title: "Cette page n'existe pas :confused:"
|
404_title: "Cette page n'existe pas :confused:"
|
||||||
404_error: "Erreur 404"
|
404_error: "Erreur 404"
|
||||||
404_description: "Il semble que la page que vous cherchiez n'existe pas."
|
404_description: "Il semble que la page que vous cherchez n'existe pas."
|
||||||
|
|
||||||
footer:
|
footer:
|
||||||
dark_appearance: "Passer au thème sombre"
|
dark_appearance: "Passer au thème sombre"
|
||||||
|
@ -62,4 +62,4 @@ shortcode:
|
||||||
recent_articles: "Articles récents"
|
recent_articles: "Articles récents"
|
||||||
|
|
||||||
recent:
|
recent:
|
||||||
show_more: "Montre Plus"
|
show_more: "Voir plus"
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
{{- partial "partials/functions/warnings.html" .Site -}}
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="{{ with .Site.Params.isoCode | default (.Site.LanguageCode | default " en") }} {{- . -}} {{ end }}" dir="{{ if .Site.Params.rtl | default false -}}
|
<html lang="{{ with .Site.Params.isoCode | default (.Site.LanguageCode | default " en") }} {{- . -}} {{ end }}" dir="{{ if .Site.Params.rtl | default false -}}
|
||||||
rtl
|
rtl
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
{{ if hugo.IsProduction }}
|
{{ with site.Params.fathomAnalytics.site }}
|
||||||
{{ with .Site.Params.fathomAnalytics.site }}
|
|
||||||
{{ if isset $.Site.Params.fathomanalytics "domain" }}
|
{{ if isset $.Site.Params.fathomanalytics "domain" }}
|
||||||
<script defer src="https://{{ $.Site.Params.fathomanalytics.domain }}/script.js" data-site="{{ . }}"></script>
|
<script defer src="https://{{ $.Site.Params.fathomanalytics.domain }}/script.js" data-site="{{ . }}"></script>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<script defer src="https://cdn.usefathom.com/script.js" data-site="{{ . }}"></script>
|
<script defer src="https://cdn.usefathom.com/script.js" data-site="{{ . }}"></script>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ template "_internal/google_analytics.html" . }}
|
{{/* template "_internal/google_analytics.html" . */}}
|
||||||
{{ end }}
|
{{ partial "ga-analytics.html" }}
|
|
@ -1,6 +0,0 @@
|
||||||
{{ if ne .Site.Params.showAppearanceSwitcher nil }}
|
|
||||||
{{ warnf "[BLOWFISH] Theme parameter `showAppearanceSwitcher` has been renamed to `footer.showAppearanceSwitcher`. Please update your site configuration." }}
|
|
||||||
{{ end }}
|
|
||||||
{{ if ne .Site.Params.showScrollToTop nil }}
|
|
||||||
{{ warnf "[BLOWFISH] Theme parameter `showScrollToTop` has been renamed to `footer.showScrollToTop`. Please update your site configuration." }}
|
|
||||||
{{ end }}
|
|
10
layouts/partials/ga-analytics.html
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{{ if site.Config.Services.GoogleAnalytics.ID }}
|
||||||
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.Config.Services.GoogleAnalytics.ID }}"></script>
|
||||||
|
<script>
|
||||||
|
window.dataLayer = window.dataLayer || [];
|
||||||
|
function gtag(){dataLayer.push(arguments);}
|
||||||
|
gtag('js', new Date());
|
||||||
|
|
||||||
|
gtag('config', '{{ site.Config.Services.GoogleAnalytics.ID }}');
|
||||||
|
</script>
|
||||||
|
{{ end }}
|
|
@ -113,7 +113,7 @@
|
||||||
{{/* Vendor */}}
|
{{/* Vendor */}}
|
||||||
{{ partial "vendor.html" . }}
|
{{ partial "vendor.html" . }}
|
||||||
{{/* Analytics */}}
|
{{/* Analytics */}}
|
||||||
{{ partialCached "analytics.html" .Site }}
|
{{ partial "analytics.html" .Site }}
|
||||||
{{/* Extend head - eg. for custom analytics scripts, etc. */}}
|
{{/* Extend head - eg. for custom analytics scripts, etc. */}}
|
||||||
{{ if templates.Exists "partials/extend-head.html" }}
|
{{ if templates.Exists "partials/extend-head.html" }}
|
||||||
{{ partialCached "extend-head.html" .Site }}
|
{{ partialCached "extend-head.html" .Site }}
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
{{ $time := now.UnixNano }}
|
{{ $id := delimit (slice "gallery" .Ordinal) "-" }}
|
||||||
{{ $id := delimit (slice "gallery" .Ordinal $time) "-" }}
|
|
||||||
|
|
||||||
<div id="{{ $id }}">
|
<div id="{{ $id }}">
|
||||||
{{ .Inner }}
|
{{ .Inner }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function () {
|
$(window).on("load", function () {
|
||||||
$('#{{ $id }}').packery({
|
$('#{{ $id }}').packery({
|
||||||
percentPosition: true,
|
percentPosition: true,
|
||||||
gutter: 5,
|
gutter: 5,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "hugo-blowfish-theme",
|
"name": "hugo-blowfish-theme",
|
||||||
"version": "2.34.0",
|
"version": "2.34.1",
|
||||||
"description": "Blowfish theme for Hugo",
|
"description": "Blowfish theme for Hugo",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"fullinstall": "npm run preinstall && npm install && npm run postinstall",
|
"fullinstall": "npm run preinstall && npm install && npm run postinstall",
|
||||||
|
|
387
public/404.html
|
@ -1,10 +1 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Authors Taxonomy Listing Example on Blowfish</title><link>https://nunocoracao.github.io/blowfish/authors/</link><description>Recent content in Authors Taxonomy Listing Example on Blowfish</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Wed, 12 Oct 2022 00:00:00 +0000</lastBuildDate><atom:link href="https://nunocoracao.github.io/blowfish/authors/index.xml" rel="self" type="application/rss+xml"/><item><title>Dummy Second Author</title><link>https://nunocoracao.github.io/blowfish/authors/secondauthor/</link><pubDate>Wed, 12 Oct 2022 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/authors/secondauthor/</guid><description>Dummy Second Author&rsquo;s awesome dummy bio.</description></item><item><title>Nuno Coração</title><link>https://nunocoracao.github.io/blowfish/authors/nunocoracao/</link><pubDate>Wed, 12 Oct 2022 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/authors/nunocoracao/</guid><description>Nuno&rsquo;s awesome dummy bio.</description></item></channel></rss>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Authors on Blowfish</title>
|
|
||||||
<link>/authors/</link>
|
|
||||||
<description>Recent content in Authors on Blowfish</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>en</language><atom:link href="/authors/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
32
public/authors/nunocoracao/index.html
Normal file
1
public/authors/nunocoracao/index.xml
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Nuno Coração on Blowfish</title><link>https://nunocoracao.github.io/blowfish/authors/nunocoracao/</link><description>Recent content in Nuno Coração on Blowfish</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Wed, 12 Oct 2022 00:00:00 +0000</lastBuildDate><atom:link href="https://nunocoracao.github.io/blowfish/authors/nunocoracao/index.xml" rel="self" type="application/rss+xml"/><item><title>Multiple Authors</title><link>https://nunocoracao.github.io/blowfish/samples/multiple-authors/</link><pubDate>Wed, 12 Oct 2022 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/samples/multiple-authors/</guid><description>A quick example of how multiple authors could be used.</description></item><item><title>Multiple Authors</title><link>https://nunocoracao.github.io/blowfish/docs/multi-author/</link><pubDate>Mon, 10 Aug 2020 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/docs/multi-author/</guid><description>Some websites have more than one author contributing with content and therefore require more than a single default author across the entire website. For those use-cases, Blowfish allows users to extend the list of authors using the multiple authors feature.</description></item></channel></rss>
|
1
public/authors/nunocoracao/page/1/index.html
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<!doctype html><html lang=en><head><title>https://nunocoracao.github.io/blowfish/authors/nunocoracao/</title><link rel=canonical href=https://nunocoracao.github.io/blowfish/authors/nunocoracao/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://nunocoracao.github.io/blowfish/authors/nunocoracao/"></head></html>
|
26
public/authors/secondauthor/index.html
Normal file
1
public/authors/secondauthor/index.xml
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Dummy Second Author on Blowfish</title><link>https://nunocoracao.github.io/blowfish/authors/secondauthor/</link><description>Recent content in Dummy Second Author on Blowfish</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Wed, 12 Oct 2022 00:00:00 +0000</lastBuildDate><atom:link href="https://nunocoracao.github.io/blowfish/authors/secondauthor/index.xml" rel="self" type="application/rss+xml"/><item><title>Multiple Authors</title><link>https://nunocoracao.github.io/blowfish/samples/multiple-authors/</link><pubDate>Wed, 12 Oct 2022 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/samples/multiple-authors/</guid><description>A quick example of how multiple authors could be used.</description></item></channel></rss>
|
1
public/authors/secondauthor/page/1/index.html
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<!doctype html><html lang=en><head><title>https://nunocoracao.github.io/blowfish/authors/secondauthor/</title><link rel=canonical href=https://nunocoracao.github.io/blowfish/authors/secondauthor/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://nunocoracao.github.io/blowfish/authors/secondauthor/"></head></html>
|
|
@ -0,0 +1 @@
|
||||||
|
const sitePreference=document.documentElement.getAttribute("data-default-appearance"),userPreference=localStorage.getItem("appearance");(sitePreference==="dark"&&userPreference===null||userPreference==="dark")&&document.documentElement.classList.add("dark"),document.documentElement.getAttribute("data-auto-appearance")==="true"&&(window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches&&userPreference!=="light"&&document.documentElement.classList.add("dark"),window.matchMedia("(prefers-color-scheme: dark)").addEventListener("change",e=>{e.matches?document.documentElement.classList.add("dark"):document.documentElement.classList.remove("dark")})),window.addEventListener("DOMContentLoaded",e=>{const t=document.getElementById("appearance-switcher"),n=document.getElementById("appearance-switcher-mobile");updateMeta(),this.updateLogo?.(getTargetAppearance()),t&&(t.addEventListener("click",()=>{document.documentElement.classList.toggle("dark");var e=getTargetAppearance();localStorage.setItem("appearance",e),updateMeta(),this.updateLogo?.(e)}),t.addEventListener("contextmenu",e=>{e.preventDefault(),localStorage.removeItem("appearance")})),n&&(n.addEventListener("click",()=>{document.documentElement.classList.toggle("dark");var e=getTargetAppearance();localStorage.setItem("appearance",e),updateMeta(),this.updateLogo?.(e)}),n.addEventListener("contextmenu",e=>{e.preventDefault(),localStorage.removeItem("appearance")}))});var updateMeta=()=>{var e=document.querySelector("body"),t=getComputedStyle(e);document.querySelector('meta[name="theme-color"]').setAttribute("content",t.backgroundColor)},getTargetAppearance=()=>document.documentElement.classList.contains("dark")?"dark":"light";window.addEventListener("DOMContentLoaded",e=>{const t=document.getElementById("top-scroller"),n=document.getElementById("site-footer");t&&n&&t.getBoundingClientRect().top>n.getBoundingClientRect().top&&(t.hidden=!0)})
|
|
@ -1,10 +1 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
<?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 Blowfish</title><link>https://nunocoracao.github.io/blowfish/categories/</link><description>Recent content in Categories on Blowfish</description><generator>Hugo -- gohugo.io</generator><language>en</language><atom:link href="https://nunocoracao.github.io/blowfish/categories/index.xml" rel="self" type="application/rss+xml"/></channel></rss>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Categories on Blowfish</title>
|
|
||||||
<link>/categories/</link>
|
|
||||||
<description>Recent content in Categories on Blowfish</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>en</language><atom:link href="/categories/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
BIN
public/docs/advanced-customisation/featured.png
Normal file
After Width: | Height: | Size: 610 KiB |
After Width: | Height: | Size: 950 KiB |
After Width: | Height: | Size: 693 KiB |
142
public/docs/advanced-customisation/index.html
Normal file
BIN
public/docs/configuration/featured.png
Normal file
After Width: | Height: | Size: 636 KiB |
After Width: | Height: | Size: 782 KiB |
After Width: | Height: | Size: 333 KiB |
92
public/docs/configuration/index.html
Normal file
BIN
public/docs/content-examples/featured.png
Normal file
After Width: | Height: | Size: 634 KiB |
After Width: | Height: | Size: 1,001 KiB |
After Width: | Height: | Size: 733 KiB |
173
public/docs/content-examples/index.html
Normal file
BIN
public/docs/firebase-views/featured.png
Normal file
After Width: | Height: | Size: 4.3 MiB |
After Width: | Height: | Size: 1.6 MiB |
After Width: | Height: | Size: 464 KiB |
59
public/docs/firebase-views/index.html
Normal file
BIN
public/docs/front-matter/featured.png
Normal file
After Width: | Height: | Size: 4.8 MiB |
After Width: | Height: | Size: 1.9 MiB |
After Width: | Height: | Size: 568 KiB |
72
public/docs/front-matter/index.html
Normal file
BIN
public/docs/getting-started/featured.png
Normal file
After Width: | Height: | Size: 586 KiB |
After Width: | Height: | Size: 926 KiB |
After Width: | Height: | Size: 671 KiB |
215
public/docs/getting-started/index.html
Normal file
BIN
public/docs/homepage-layout/featured.png
Normal file
After Width: | Height: | Size: 633 KiB |
After Width: | Height: | Size: 1 MiB |
After Width: | Height: | Size: 727 KiB |
BIN
public/docs/homepage-layout/img/home-background.png
Normal file
After Width: | Height: | Size: 3.6 MiB |
BIN
public/docs/homepage-layout/img/home-card.png
Normal file
After Width: | Height: | Size: 3.5 MiB |
BIN
public/docs/homepage-layout/img/home-hero.png
Normal file
After Width: | Height: | Size: 4.2 MiB |
BIN
public/docs/homepage-layout/img/home-list.png
Normal file
After Width: | Height: | Size: 1.4 MiB |
BIN
public/docs/homepage-layout/img/home-page.png
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
public/docs/homepage-layout/img/home-profile.png
Normal file
After Width: | Height: | Size: 1.6 MiB |
81
public/docs/homepage-layout/index.html
Normal file
BIN
public/docs/hosting-deployment/featured.png
Normal file
After Width: | Height: | Size: 4.6 MiB |
After Width: | Height: | Size: 1.6 MiB |
After Width: | Height: | Size: 454 KiB |
BIN
public/docs/hosting-deployment/github-pages-source.jpg
Normal file
After Width: | Height: | Size: 44 KiB |
99
public/docs/hosting-deployment/index.html
Normal file
BIN
public/docs/hosting-deployment/netlify-build-settings.jpg
Normal file
After Width: | Height: | Size: 72 KiB |
BIN
public/docs/hosting-deployment/render-settings.jpg
Normal file
After Width: | Height: | Size: 94 KiB |
114
public/docs/index.html
Normal file
7
public/docs/index.xml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Documentation on Blowfish</title><link>https://nunocoracao.github.io/blowfish/docs/</link><description>Recent content in Documentation on Blowfish</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Wed, 19 Jan 2022 00:00:00 +0000</lastBuildDate><atom:link href="https://nunocoracao.github.io/blowfish/docs/index.xml" rel="self" type="application/rss+xml"/><item><title>Welcome to Blowfish</title><link>https://nunocoracao.github.io/blowfish/docs/welcome/</link><pubDate>Wed, 19 Jan 2022 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/docs/welcome/</guid><description>Blowfish is packed with tons of features. The original aim of Blowfish was to develop a theme that was simple and lightweight. The theme is a fork of Congo and expands its initial vision.</description></item><item><title>Installation</title><link>https://nunocoracao.github.io/blowfish/docs/installation/</link><pubDate>Sun, 16 Aug 2020 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/docs/installation/</guid><description>Simply follow the standard Hugo Quick Start procedure to get up and running quickly.
|
||||||
|
Detailed installation instructions can be found below. Instructions for updating the theme are also available.
|
||||||
|
Installation # These instructions will get you up and running using Hugo and Blowfish from a completely blank state.</description></item><item><title>Getting Started</title><link>https://nunocoracao.github.io/blowfish/docs/getting-started/</link><pubDate>Sat, 15 Aug 2020 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/docs/getting-started/</guid><description>This section assumes you have already installed the Blowfish theme. The config files that ship with Blowfish contain all of the possible settings that the theme recognises. By default, many of these are commented out but you can simply uncomment them to activate or change a specific feature.</description></item><item><title>Configuration</title><link>https://nunocoracao.github.io/blowfish/docs/configuration/</link><pubDate>Fri, 14 Aug 2020 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/docs/configuration/</guid><description>Blowfish is a highly customisable theme and uses some of the latest Hugo features to simplify how it is configured.
|
||||||
|
The theme ships with a default configuration that gets you up and running with a basic blog or static website.</description></item><item><title>Homepage Layout</title><link>https://nunocoracao.github.io/blowfish/docs/homepage-layout/</link><pubDate>Thu, 13 Aug 2020 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/docs/homepage-layout/</guid><description>Blowfish provides a fully flexible homepage layout. There are two main templates to choose from with additional settings to adjust the design. Alternatively, you can also provide your own template and have complete control over the homepage content.</description></item><item><title>Front Matter</title><link>https://nunocoracao.github.io/blowfish/docs/front-matter/</link><pubDate>Wed, 12 Aug 2020 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/docs/front-matter/</guid><description>In addition to the default Hugo front matter parameters, Blowfish adds a number of additional options to customise the presentation of individual articles. All the available theme front matter parameters are listed below.</description></item><item><title>Thumbnails</title><link>https://nunocoracao.github.io/blowfish/docs/thumbnails/</link><pubDate>Wed, 12 Aug 2020 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/docs/thumbnails/</guid><description>Thumbnails # Blowfish was enhanced in order to make it easy to add visual support to your posts. To do so, you just need to place an image file (almost all formats are supported bue we recommend .</description></item><item><title>Shortcodes</title><link>https://nunocoracao.github.io/blowfish/docs/shortcodes/</link><pubDate>Tue, 11 Aug 2020 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/docs/shortcodes/</guid><description>In addition to all the default Hugo shortcodes, Blowfish adds a few extras for additional functionality.
|
||||||
|
Alert # alert outputs its contents as a stylised message box within your article. It&rsquo;s useful for drawing attention to important information that you don&rsquo;t want the reader to miss.</description></item><item><title>Multiple Authors</title><link>https://nunocoracao.github.io/blowfish/docs/multi-author/</link><pubDate>Mon, 10 Aug 2020 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/docs/multi-author/</guid><description>Some websites have more than one author contributing with content and therefore require more than a single default author across the entire website. For those use-cases, Blowfish allows users to extend the list of authors using the multiple authors feature.</description></item><item><title>Partials</title><link>https://nunocoracao.github.io/blowfish/docs/partials/</link><pubDate>Mon, 10 Aug 2020 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/docs/partials/</guid><description>Analytics # Blowfish provides built-in support for Fathom Analytics and Google Analytics. Fathom is a paid alternative to Google Analytics that respects user privacy.
|
||||||
|
Fathom Analytics # To enable Fathom Analytics support, simply provide your Fathom site code in the config/_default/params.</description></item><item><title>Content Examples</title><link>https://nunocoracao.github.io/blowfish/docs/content-examples/</link><pubDate>Sun, 09 Aug 2020 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/docs/content-examples/</guid><description>If you&rsquo;ve been reading the documentation in order, you should now know about all the features and configurations available in Blowfish. This page is designed to pull everything together and offer some worked examples that you might like to use in your Hugo project.</description></item><item><title>Series</title><link>https://nunocoracao.github.io/blowfish/docs/series/</link><pubDate>Sun, 09 Aug 2020 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/docs/series/</guid><description>Blowfish provides a feature to group a set of articles together under a &ldquo;series&rdquo;. Placing an article under a series will display the rest of the series articles in each single page and provide a quick way to navigate amongst them.</description></item><item><title>Advanced Customisation</title><link>https://nunocoracao.github.io/blowfish/docs/advanced-customisation/</link><pubDate>Sat, 08 Aug 2020 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/docs/advanced-customisation/</guid><description>There are many ways you can make advanced changes to Blowfish. Read below to learn more about what can be customised and the best way of achieving your desired result.</description></item><item><title>Hosting & Deployment</title><link>https://nunocoracao.github.io/blowfish/docs/hosting-deployment/</link><pubDate>Fri, 07 Aug 2020 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/docs/hosting-deployment/</guid><description>There are many ways to deploy your Hugo website built with Blowfish. The theme is designed to be flexible in almost any deployment scenario.
|
||||||
|
Blowfish is built using relative URLs throughout the theme.</description></item><item><title>Firebase: Views & Likes</title><link>https://nunocoracao.github.io/blowfish/docs/firebase-views/</link><pubDate>Mon, 03 Aug 2020 00:00:00 +0000</pubDate><guid>https://nunocoracao.github.io/blowfish/docs/firebase-views/</guid><description>In order to be able to support dynamic data across your website we&rsquo;ve added the support to integrate Firebase. This will allow you to use the views feature across lists and posts.</description></item></channel></rss>
|
BIN
public/docs/installation/featured.png
Normal file
After Width: | Height: | Size: 620 KiB |
After Width: | Height: | Size: 988 KiB |
After Width: | Height: | Size: 719 KiB |
98
public/docs/installation/index.html
Normal file
BIN
public/docs/multi-author/featured.png
Normal file
After Width: | Height: | Size: 622 KiB |
After Width: | Height: | Size: 992 KiB |
After Width: | Height: | Size: 709 KiB |
112
public/docs/multi-author/index.html
Normal file
1
public/docs/page/1/index.html
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<!doctype html><html lang=en><head><title>https://nunocoracao.github.io/blowfish/docs/</title><link rel=canonical href=https://nunocoracao.github.io/blowfish/docs/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://nunocoracao.github.io/blowfish/docs/"></head></html>
|
BIN
public/docs/partials/featured.png
Normal file
After Width: | Height: | Size: 659 KiB |
After Width: | Height: | Size: 976 KiB |
After Width: | Height: | Size: 742 KiB |
106
public/docs/partials/index.html
Normal file
BIN
public/docs/series/featured.png
Normal file
After Width: | Height: | Size: 1.7 MiB |
After Width: | Height: | Size: 1.9 MiB |
After Width: | Height: | Size: 613 KiB |
66
public/docs/series/index.html
Normal file
BIN
public/docs/shortcodes/abstract.jpg
Normal file
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 10 KiB |
BIN
public/docs/shortcodes/featured.png
Normal file
After Width: | Height: | Size: 4.6 MiB |
After Width: | Height: | Size: 1.7 MiB |
After Width: | Height: | Size: 517 KiB |
BIN
public/docs/shortcodes/gallery/01.jpg
Normal file
After Width: | Height: | Size: 2.6 MiB |
BIN
public/docs/shortcodes/gallery/02.jpg
Normal file
After Width: | Height: | Size: 6.4 MiB |
BIN
public/docs/shortcodes/gallery/03.jpg
Normal file
After Width: | Height: | Size: 1.1 MiB |
BIN
public/docs/shortcodes/gallery/04.jpg
Normal file
After Width: | Height: | Size: 3.1 MiB |
BIN
public/docs/shortcodes/gallery/05.jpg
Normal file
After Width: | Height: | Size: 3.7 MiB |
BIN
public/docs/shortcodes/gallery/06.jpg
Normal file
After Width: | Height: | Size: 4.8 MiB |
BIN
public/docs/shortcodes/gallery/07.jpg
Normal file
After Width: | Height: | Size: 1.6 MiB |
314
public/docs/shortcodes/index.html
Normal file
BIN
public/docs/thumbnails/featured.png
Normal file
After Width: | Height: | Size: 4.8 MiB |