diff --git a/404.html b/404.html index e9ceb66415..b42fe14510 100644 --- a/404.html +++ b/404.html @@ -8,21 +8,21 @@ 404 Page not found :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - + + + +
+ + + + + + + + +
+ +
+ + +
+ + + + +
+ + + + + + + diff --git a/pir/shortcodes/badge/index.print.html b/pir/shortcodes/badge/index.print.html new file mode 100644 index 0000000000..cb6f12acc4 --- /dev/null +++ b/pir/shortcodes/badge/index.print.html @@ -0,0 +1,251 @@ + + + + + + + + + + Button :: Cap'n Hugo Relearrrn Theme + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+
+
+

Button

+ + +
+
Arrr! Pirrrates
+
+

Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

+
+ +

Th' badge shorrrtcode displays little markers 'n yer text wit' adjust'ble color, title an' ay'con.

+

Important +Version6.6.6 +Captain + AhoiAwesome

+

Usage

+

While th' examples be us'n shorrrtcodes wit' named parameter ye be free t' also call this shorrrtcode from yer own partials.

+ +
+
+ + +
+
+
+
{{% badge %}}Important{{% /badge %}}
+{{% badge style="primary" title="Version" %}}6.6.6{{% /badge %}}
+{{% badge style="red" ay'con="skull-crossbones" %}}Captain{{% /badge %}}
+{{% badge style="info" %}}Awesome{{% /badge %}}
+
+
+
+
{{ partial "shortcodes/badge.html" (dict
+    "context" .
+    "content" "Important"
+)}}
+{{ partial "shortcodes/badge.html" (dict
+  "context" .
+  "style" "primary"
+  "title" "Version"
+  "content" "6.6.6"
+)}}
+{{ partial "shortcodes/badge.html" (dict
+  "context" .
+  "style" "red"
+  "icon" "skull-crossbones"
+  "content" "Captain"
+)}}
+{{ partial "shortcodes/badge.html" (dict
+  "context" .
+  "style" "info"
+  "content" "Awesome"
+)}}
+
+
+
+
+

Once th' button be clicked, it opens another browser tab fer th' given URL.

+

Parameter

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDefaultNotes
styletransparentTh' color scheme used t' paint th' badge.

- by severity: info, note, tip, warning
- by brand color: primary, secondary
- by color: blue, green, grey, orange, red
- by special color: default, transparent
ay'consee notesFont Awesome ay'con name set t' th' left o' th' title. Depend'n on th' style there may be a default ay'con. Any given value will overwrite th' default.

- fer severity styles: a nice match'n ay'con fer th' severity
- fer all other colors: <empty>

If ye want no ay'con fer a severity style, ye have t' set this parameter t' " " (a non empty str'n filled wit' spaces)
titlesee notesArbitrary text fer th' badge title. Depend'n on th' style there may be a default title. Any given value will overwrite th' default.

- fer severity styles: th' match'n title fer th' severity
- fer all other colors: <empty>

If ye want no title fer a severity style, ye have t' set this parameter t' " " (a non empty str'n filled wit' spaces)
<content>see notesArbitrary text fer th' badge
+

Examples

+

Style

+

By Severity

+
{{% badge style="info" %}}New{{% /badge %}}
+{{% badge style="note" %}}Change{{% /badge %}}
+{{% badge style="tip" %}}Optional{{% /badge %}}
+{{% badge style="warning" %}}Break'n{{% /badge %}}
+

AhoiNew + AvastChange + Smarrrt ArrrseOptional + ArrrBreak'n

+

By Brand Colors

+
{{% badge style="primary" ay'con="bullhorn" title="Announcement" %}}Mandatory{{% /badge %}}
+{{% badge style="secondary" ay'con="bullhorn" title="Announcement" %}}Optional{{% /badge %}}
+

AnnouncementMandatory + AnnouncementOptional

+

By Color

+
{{% badge style="blue" ay'con="palette" title="Color" %}}Blue{{% /badge %}}
+{{% badge style="green" ay'con="palette" title="Color" %}}Green{{% /badge %}}
+{{% badge style="grey" ay'con="palette" title="Color" %}}Grey{{% /badge %}}
+{{% badge style="orange" ay'con="palette" title="Color" %}}Orange{{% /badge %}}
+{{% badge style="red" ay'con="palette" title="Color" %}}Red{{% /badge %}}
+

ColorBlue + ColorGreen + ColorGrey + ColorOrange + ColorRed

+

By Special Color

+
{{% badge style="default" ay'con="palette" title="Color" %}}Default{{% /badge %}}
+{{% badge style="transparent" ay'con="palette" title="Color" %}}Transparent{{% /badge %}}
+

ColorDefault + ColorTransparent

+

Variants

+

Without Ay'con an' Title Text

+
{{% badge %}}6.6.6{{% /badge %}}
+{{% badge style="info" ay'con=" " title=" " %}}Awesome{{% /badge %}}
+{{% badge style="red" %}}Captain{{% /badge %}}
+

6.6.6 +Awesome +Captain

+

Without Ay'con

+
{{% badge title="Version" %}}6.6.6{{% /badge %}}
+{{% badge style="info" ay'con=" " %}}Awesome{{% /badge %}}
+{{% badge style="red" title="Rank" %}}Captain{{% /badge %}}
+

Version6.6.6 +AhoiAwesome +RankCaptain

+

Without Title Text

+
{{% badge ay'con="star" %}}6.6.6{{% /badge %}}
+{{% badge style="info" title=" " %}}Awesome{{% /badge %}}
+{{% badge style="red" ay'con="skull-crossbones" %}}Captain{{% /badge %}}
+

6.6.6 +Awesome +Captain

+

All Set

+
{{% badge ay'con="star" title="Version" %}}6.6.6{{% /badge %}}
+{{% badge style="info" %}}Awesome{{% /badge %}}
+{{% badge style="red" ay'con="skull-crossbones" title="Rank" %}}Captain{{% /badge %}}
+

Version6.6.6 + AhoiAwesome + RankCaptain

+

Override fer Severity

+
{{% badge style="info" ay'con="rocket" title="Feature" %}}Awesome{{% /badge %}}
+
FeatureAwesome +

Other

+

Inside o' Text

+
Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus. {{% badge style="blue" ay'con="rocket" %}}Awesome{{% /badge %}} Et legere ocurreret pri, animal tacimates complectitur ad cum. Cu eum inermis inimicus efficiendi. Labore officiis his ex, soluta officiis concludaturque ei qui, vide sensibus vim ad.
+

Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus. Awesome Et legere ocurreret pri, animal tacimates complectitur ad cum. Cu eum inermis inimicus efficiendi. Labore officiis his ex, soluta officiis concludaturque ei qui, vide sensibus vim ad.

+ + + +
+
+
+
+ + + + + + diff --git a/pir/shortcodes/badge/index.xml b/pir/shortcodes/badge/index.xml new file mode 100644 index 0000000000..a319ce9194 --- /dev/null +++ b/pir/shortcodes/badge/index.xml @@ -0,0 +1,10 @@ + + + + Button on Cap'n Hugo Relearrrn Theme + https://McShelby.github.io/hugo-theme-relearn/pir/shortcodes/badge/index.html + Recent content in Button on Cap'n Hugo Relearrrn Theme + Hugo -- gohugo.io + en + + \ No newline at end of file diff --git a/pir/shortcodes/button/index.html b/pir/shortcodes/button/index.html index 1711c6b16d..c16a521058 100644 --- a/pir/shortcodes/button/index.html +++ b/pir/shortcodes/button/index.html @@ -10,21 +10,21 @@ Button :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
@@ -54,7 +54,7 @@
- - - - + + + + diff --git a/pir/shortcodes/button/index.print.html b/pir/shortcodes/button/index.print.html index 2a86bffa45..d36e09d1c7 100644 --- a/pir/shortcodes/button/index.print.html +++ b/pir/shortcodes/button/index.print.html @@ -10,22 +10,22 @@ Button :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
@@ -72,8 +72,8 @@
-
Arrr! Pirrrates
-
+
Arrr! Pirrrates
+

Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

@@ -380,9 +380,9 @@
- - - - + + + + diff --git a/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/index.html b/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/index.html index 077e9f4738..bac0ca84e5 100644 --- a/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/index.html +++ b/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/index.html @@ -9,21 +9,21 @@ Plank 1-1-1-1-1-1 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
@@ -92,8 +92,8 @@
-
Arrr! Pirrrates
-
+
Arrr! Pirrrates
+

Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

@@ -178,12 +178,12 @@ - - - - - - + + + + + +
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/index.print.html b/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/index.print.html index 76ce7ca731..eceb9cc980 100644 --- a/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/index.print.html +++ b/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/index.print.html @@ -9,22 +9,22 @@ Plank 1-1-1-1-1-1 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,8 +77,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -91,9 +91,9 @@
    - - - - + + + + diff --git a/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/index.html b/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/index.html index 3df5d81748..5a8d7c735d 100644 --- a/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/index.html +++ b/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/index.html @@ -9,21 +9,21 @@ Plank 1-1-1-1-1 (hidden) :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -92,8 +92,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -184,12 +184,12 @@ - - - - - - + + + + + +
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/index.print.html b/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/index.print.html index 6cb15bcceb..92a121b27b 100644 --- a/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/index.print.html +++ b/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/index.print.html @@ -9,22 +9,22 @@ Plank 1-1-1-1-1 (hidden) :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,8 +77,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -102,8 +102,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -117,9 +117,9 @@
    - - - - + + + + diff --git a/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/index.html b/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/index.html index d59e43024c..b456285481 100644 --- a/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/index.html +++ b/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/index.html @@ -9,21 +9,21 @@ Plank 1-1-1-1 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -92,8 +92,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -184,12 +184,12 @@ - - - - - - + + + + + +
      @@ -212,6 +212,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/index.print.html b/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/index.print.html index 0dbacdcd6d..5ab4dc8810 100644 --- a/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/index.print.html +++ b/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/index.print.html @@ -9,22 +9,22 @@ Plank 1-1-1-1 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,8 +77,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -100,9 +100,9 @@
    - - - - + + + + diff --git a/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/index.html b/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/index.html index 632f66a6d7..cf6117935c 100644 --- a/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/index.html +++ b/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/index.html @@ -9,21 +9,21 @@ Plank 1-1-1 (hidden) :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -92,8 +92,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -184,12 +184,12 @@ - - - - - - + + + + + +
      @@ -212,6 +212,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/index.print.html b/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/index.print.html index dcfd63cdda..2c8cdbdbd6 100644 --- a/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/index.print.html +++ b/pir/shortcodes/children/children-1/children-1-1/children-1-1-1/index.print.html @@ -9,22 +9,22 @@ Plank 1-1-1 (hidden) :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,8 +77,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -102,8 +102,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -126,9 +126,9 @@
    - - - - + + + + diff --git a/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/index.html b/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/index.html index 40c0c996db..c83dd7ec8d 100644 --- a/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/index.html +++ b/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/index.html @@ -10,21 +10,21 @@ Plank 1-1-2-1 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -93,8 +93,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -179,12 +179,12 @@ - - - - - - + + + + + +
      @@ -207,6 +207,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/index.print.html b/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/index.print.html index 428ae672cb..29b463c979 100644 --- a/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/index.print.html +++ b/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/index.print.html @@ -10,22 +10,22 @@ Plank 1-1-2-1 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -78,8 +78,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -92,9 +92,9 @@
    - - - - + + + + diff --git a/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/index.html b/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/index.html index cca12adbd7..23cc5225ea 100644 --- a/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/index.html +++ b/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/index.html @@ -10,21 +10,21 @@ Plank 1-1-2-2 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -93,8 +93,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -179,12 +179,12 @@ - - - - - - + + + + + +
      @@ -207,6 +207,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/index.print.html b/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/index.print.html index a2e05c1519..5d681d1453 100644 --- a/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/index.print.html +++ b/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/index.print.html @@ -10,22 +10,22 @@ Plank 1-1-2-2 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -78,8 +78,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -92,9 +92,9 @@
    - - - - + + + + diff --git a/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/index.html b/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/index.html index 68bb80ddd3..46a0da5922 100644 --- a/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/index.html +++ b/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/index.html @@ -10,21 +10,21 @@ Plank 1-1-2 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -93,8 +93,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -186,12 +186,12 @@ - - - - - - + + + + + +
      @@ -214,6 +214,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/index.print.html b/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/index.print.html index e5678c273a..1c6567b395 100644 --- a/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/index.print.html +++ b/pir/shortcodes/children/children-1/children-1-1/children-1-1-2/index.print.html @@ -10,22 +10,22 @@ Plank 1-1-2 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -78,8 +78,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -104,8 +104,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -121,8 +121,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -136,9 +136,9 @@
    - - - - + + + + diff --git a/pir/shortcodes/children/children-1/children-1-1/children-1-1-3/index.html b/pir/shortcodes/children/children-1/children-1-1/children-1-1-3/index.html index 6a8ed9ee2e..0038a9c7df 100644 --- a/pir/shortcodes/children/children-1/children-1-1/children-1-1-3/index.html +++ b/pir/shortcodes/children/children-1/children-1-1/children-1-1-3/index.html @@ -10,21 +10,21 @@ Plank 1-1-3 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -93,8 +93,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -179,12 +179,12 @@ - - - - - - + + + + + +
      @@ -207,6 +207,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/children/children-1/children-1-1/children-1-1-3/index.print.html b/pir/shortcodes/children/children-1/children-1-1/children-1-1-3/index.print.html index 1945670d0f..e94813e371 100644 --- a/pir/shortcodes/children/children-1/children-1-1/children-1-1-3/index.print.html +++ b/pir/shortcodes/children/children-1/children-1-1/children-1-1-3/index.print.html @@ -10,22 +10,22 @@ Plank 1-1-3 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -78,8 +78,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -92,9 +92,9 @@
    - - - - + + + + diff --git a/pir/shortcodes/children/children-1/children-1-1/index.html b/pir/shortcodes/children/children-1/children-1-1/index.html index 14ec1343ca..970a3e39b1 100644 --- a/pir/shortcodes/children/children-1/children-1-1/index.html +++ b/pir/shortcodes/children/children-1/children-1-1/index.html @@ -10,21 +10,21 @@ Plank 1-1 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -93,8 +93,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -187,12 +187,12 @@ - - - - - - + + + + + +
      @@ -215,6 +215,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/children/children-1/children-1-1/index.print.html b/pir/shortcodes/children/children-1/children-1-1/index.print.html index 958740013d..02b552d81a 100644 --- a/pir/shortcodes/children/children-1/children-1-1/index.print.html +++ b/pir/shortcodes/children/children-1/children-1-1/index.print.html @@ -10,22 +10,22 @@ Plank 1-1 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -78,8 +78,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -105,8 +105,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -131,8 +131,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -148,8 +148,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -166,8 +166,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -181,9 +181,9 @@
    - - - - + + + + diff --git a/pir/shortcodes/children/children-1/index.html b/pir/shortcodes/children/children-1/index.html index 519f3ee490..2560299711 100644 --- a/pir/shortcodes/children/children-1/index.html +++ b/pir/shortcodes/children/children-1/index.html @@ -10,21 +10,21 @@ Plank 1 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -92,8 +92,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -184,12 +184,12 @@ - - - - - - + + + + + +
      @@ -212,6 +212,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/children/children-1/index.print.html b/pir/shortcodes/children/children-1/index.print.html index 42bd7a7355..923479be5d 100644 --- a/pir/shortcodes/children/children-1/index.print.html +++ b/pir/shortcodes/children/children-1/index.print.html @@ -10,22 +10,22 @@ Plank 1 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,8 +77,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -102,8 +102,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -129,8 +129,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -155,8 +155,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -172,8 +172,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -190,8 +190,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -206,9 +206,9 @@
    - - - - + + + + diff --git a/pir/shortcodes/children/children-2/index.html b/pir/shortcodes/children/children-2/index.html index a0541d6ad0..7168f2d56a 100644 --- a/pir/shortcodes/children/children-2/index.html +++ b/pir/shortcodes/children/children-2/index.html @@ -10,21 +10,21 @@ Plank 2 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -92,8 +92,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -179,12 +179,12 @@ - - - - - - + + + + + +
      @@ -207,6 +207,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/children/children-2/index.print.html b/pir/shortcodes/children/children-2/index.print.html index 212cd9d635..8b6b54b641 100644 --- a/pir/shortcodes/children/children-2/index.print.html +++ b/pir/shortcodes/children/children-2/index.print.html @@ -10,22 +10,22 @@ Plank 2 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,8 +77,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -92,9 +92,9 @@
    - - - - + + + + diff --git a/pir/shortcodes/children/children-3/index.html b/pir/shortcodes/children/children-3/index.html index ce1cf535e1..146fc372d2 100644 --- a/pir/shortcodes/children/children-3/index.html +++ b/pir/shortcodes/children/children-3/index.html @@ -10,21 +10,21 @@ Plank 3 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -92,8 +92,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -184,12 +184,12 @@ - - - - - - + + + + + +
      @@ -212,6 +212,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/children/children-3/index.print.html b/pir/shortcodes/children/children-3/index.print.html index f52fe01a19..09f3a0c752 100644 --- a/pir/shortcodes/children/children-3/index.print.html +++ b/pir/shortcodes/children/children-3/index.print.html @@ -10,22 +10,22 @@ Plank 3 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,8 +77,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -102,8 +102,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -117,9 +117,9 @@
    - - - - + + + + diff --git a/pir/shortcodes/children/children-3/test3/index.html b/pir/shortcodes/children/children-3/test3/index.html index a5cf2687c0..d02870feb8 100644 --- a/pir/shortcodes/children/children-3/test3/index.html +++ b/pir/shortcodes/children/children-3/test3/index.html @@ -10,21 +10,21 @@ Plank 3-1 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -93,8 +93,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -179,12 +179,12 @@ - - - - - - + + + + + +
      @@ -207,6 +207,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/children/children-3/test3/index.print.html b/pir/shortcodes/children/children-3/test3/index.print.html index 41d7e4742c..a27947faa0 100644 --- a/pir/shortcodes/children/children-3/test3/index.print.html +++ b/pir/shortcodes/children/children-3/test3/index.print.html @@ -10,22 +10,22 @@ Plank 3-1 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -78,8 +78,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -92,9 +92,9 @@
    - - - - + + + + diff --git a/pir/shortcodes/children/children-4/index.html b/pir/shortcodes/children/children-4/index.html index 2433e7a63c..4030bef109 100644 --- a/pir/shortcodes/children/children-4/index.html +++ b/pir/shortcodes/children/children-4/index.html @@ -9,21 +9,21 @@ Plank 4 (hidden) :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -91,8 +91,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -177,12 +177,12 @@ - - - - - - + + + + + +
      @@ -205,6 +205,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/children/children-4/index.print.html b/pir/shortcodes/children/children-4/index.print.html index e8a662f983..e0ae398bd3 100644 --- a/pir/shortcodes/children/children-4/index.print.html +++ b/pir/shortcodes/children/children-4/index.print.html @@ -9,22 +9,22 @@ Plank 4 (hidden) :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -76,8 +76,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -90,9 +90,9 @@
    - - - - + + + + diff --git a/pir/shortcodes/children/index.html b/pir/shortcodes/children/index.html index 1d7c6015ce..98f181baf7 100644 --- a/pir/shortcodes/children/index.html +++ b/pir/shortcodes/children/index.html @@ -10,21 +10,21 @@ Children :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -87,8 +87,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -356,12 +356,12 @@ So its rrrambl'n be used as descript'n.

    - - - - - - + + + + + +
      @@ -384,6 +384,7 @@ So its rrrambl'n be used as descript'n.

    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/children/index.print.html b/pir/shortcodes/children/index.print.html index 739388b802..0affba1649 100644 --- a/pir/shortcodes/children/index.print.html +++ b/pir/shortcodes/children/index.print.html @@ -10,22 +10,22 @@ Children :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -72,8 +72,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -274,8 +274,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -291,8 +291,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -316,8 +316,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -343,8 +343,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -369,8 +369,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -386,8 +386,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -404,8 +404,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -423,8 +423,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -441,8 +441,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -466,8 +466,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -482,9 +482,9 @@ So its rrrambl'n be used as descript'n.

    - - - - + + + + diff --git a/pir/shortcodes/children/test/index.html b/pir/shortcodes/children/test/index.html index feee4908b0..44c030dec4 100644 --- a/pir/shortcodes/children/test/index.html +++ b/pir/shortcodes/children/test/index.html @@ -10,21 +10,21 @@ Plank X :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -88,8 +88,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -174,12 +174,12 @@ - - - - - - + + + + + +
      @@ -202,6 +202,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/children/test/index.print.html b/pir/shortcodes/children/test/index.print.html index 88f217d046..401b3f5636 100644 --- a/pir/shortcodes/children/test/index.print.html +++ b/pir/shortcodes/children/test/index.print.html @@ -10,22 +10,22 @@ Plank X :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -73,8 +73,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -87,9 +87,9 @@
    - - - - + + + + diff --git a/pir/shortcodes/expand/index.html b/pir/shortcodes/expand/index.html index 00fa802456..90baa4d307 100644 --- a/pir/shortcodes/expand/index.html +++ b/pir/shortcodes/expand/index.html @@ -10,21 +10,21 @@ Expand :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -87,8 +87,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -328,12 +328,12 @@ No need t' press ye! - - - - - - + + + + + +
      @@ -356,6 +356,7 @@ No need t' press ye!
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/expand/index.print.html b/pir/shortcodes/expand/index.print.html index 3a70427e2c..16e825fbc9 100644 --- a/pir/shortcodes/expand/index.print.html +++ b/pir/shortcodes/expand/index.print.html @@ -10,22 +10,22 @@ Expand :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -72,8 +72,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -241,9 +241,9 @@ No need t' press ye!
    - - - - + + + + diff --git a/pir/shortcodes/include/index.html b/pir/shortcodes/include/index.html index f85b3b3526..dc539fb3ad 100644 --- a/pir/shortcodes/include/index.html +++ b/pir/shortcodes/include/index.html @@ -10,21 +10,21 @@ Include :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -87,8 +87,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -256,12 +256,12 @@ - - - - - - + + + + + +
      @@ -284,6 +284,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/include/index.print.html b/pir/shortcodes/include/index.print.html index 182558d0cb..276a79f2bb 100644 --- a/pir/shortcodes/include/index.print.html +++ b/pir/shortcodes/include/index.print.html @@ -10,22 +10,22 @@ Include :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -72,8 +72,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -169,9 +169,9 @@
    - - - - + + + + diff --git a/pir/shortcodes/index.html b/pir/shortcodes/index.html index 9e69d31f9f..3e232befba 100644 --- a/pir/shortcodes/index.html +++ b/pir/shortcodes/index.html @@ -10,21 +10,21 @@ Shorrrtcodes :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -87,8 +87,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -100,6 +100,7 @@

    Attachments

    List o' files attached t' a plank

    +

    Badge

    Marker badges t' display 'n yer text

    Button

    Click'ble buttons

    Children

    List th' child planks o' a plank

    Expand

    Expandable/collaps'ble sections o' text

    @@ -191,12 +192,12 @@ - - - - - - + + + + + +
      @@ -219,6 +220,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/index.print.html b/pir/shortcodes/index.print.html index 163056efdc..fe961eae1c 100644 --- a/pir/shortcodes/index.print.html +++ b/pir/shortcodes/index.print.html @@ -10,22 +10,22 @@ Shorrrtcodes :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -72,8 +72,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -85,6 +85,7 @@

    Attachments

    List o' files attached t' a plank

    +

    Badge

    Marker badges t' display 'n yer text

    Button

    Click'ble buttons

    Children

    List th' child planks o' a plank

    Expand

    Expandable/collaps'ble sections o' text

    @@ -117,8 +118,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -291,8 +292,182 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    +
    + +

    Th' badge shorrrtcode displays little markers 'n yer text wit' adjust'ble color, title an' ay'con.

    +

    Important +Version6.6.6 +Captain + AhoiAwesome

    +

    Usage

    +

    While th' examples be us'n shorrrtcodes wit' named parameter ye be free t' also call this shorrrtcode from yer own partials.

    + +
    +
    + + +
    +
    +
    +
    {{% badge %}}Important{{% /badge %}}
    +{{% badge style="primary" title="Version" %}}6.6.6{{% /badge %}}
    +{{% badge style="red" ay'con="skull-crossbones" %}}Captain{{% /badge %}}
    +{{% badge style="info" %}}Awesome{{% /badge %}}
    +
    +
    +
    +
    {{ partial "shortcodes/badge.html" (dict
    +    "context" .
    +    "content" "Important"
    +)}}
    +{{ partial "shortcodes/badge.html" (dict
    +  "context" .
    +  "style" "primary"
    +  "title" "Version"
    +  "content" "6.6.6"
    +)}}
    +{{ partial "shortcodes/badge.html" (dict
    +  "context" .
    +  "style" "red"
    +  "icon" "skull-crossbones"
    +  "content" "Captain"
    +)}}
    +{{ partial "shortcodes/badge.html" (dict
    +  "context" .
    +  "style" "info"
    +  "content" "Awesome"
    +)}}
    +
    +
    +
    +
    +

    Once th' button be clicked, it opens another browser tab fer th' given URL.

    +

    Parameter

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameDefaultNotes
    styletransparentTh' color scheme used t' paint th' badge.

    - by severity: info, note, tip, warning
    - by brand color: primary, secondary
    - by color: blue, green, grey, orange, red
    - by special color: default, transparent
    ay'consee notesFont Awesome ay'con name set t' th' left o' th' title. Depend'n on th' style there may be a default ay'con. Any given value will overwrite th' default.

    - fer severity styles: a nice match'n ay'con fer th' severity
    - fer all other colors: <empty>

    If ye want no ay'con fer a severity style, ye have t' set this parameter t' " " (a non empty str'n filled wit' spaces)
    titlesee notesArbitrary text fer th' badge title. Depend'n on th' style there may be a default title. Any given value will overwrite th' default.

    - fer severity styles: th' match'n title fer th' severity
    - fer all other colors: <empty>

    If ye want no title fer a severity style, ye have t' set this parameter t' " " (a non empty str'n filled wit' spaces)
    <content>see notesArbitrary text fer th' badge
    +

    Examples

    +

    Style

    +

    By Severity

    +
    {{% badge style="info" %}}New{{% /badge %}}
    +{{% badge style="note" %}}Change{{% /badge %}}
    +{{% badge style="tip" %}}Optional{{% /badge %}}
    +{{% badge style="warning" %}}Break'n{{% /badge %}}
    +

    AhoiNew + AvastChange + Smarrrt ArrrseOptional + ArrrBreak'n

    +

    By Brand Colors

    +
    {{% badge style="primary" ay'con="bullhorn" title="Announcement" %}}Mandatory{{% /badge %}}
    +{{% badge style="secondary" ay'con="bullhorn" title="Announcement" %}}Optional{{% /badge %}}
    +

    AnnouncementMandatory + AnnouncementOptional

    +

    By Color

    +
    {{% badge style="blue" ay'con="palette" title="Color" %}}Blue{{% /badge %}}
    +{{% badge style="green" ay'con="palette" title="Color" %}}Green{{% /badge %}}
    +{{% badge style="grey" ay'con="palette" title="Color" %}}Grey{{% /badge %}}
    +{{% badge style="orange" ay'con="palette" title="Color" %}}Orange{{% /badge %}}
    +{{% badge style="red" ay'con="palette" title="Color" %}}Red{{% /badge %}}
    +

    ColorBlue + ColorGreen + ColorGrey + ColorOrange + ColorRed

    +

    By Special Color

    +
    {{% badge style="default" ay'con="palette" title="Color" %}}Default{{% /badge %}}
    +{{% badge style="transparent" ay'con="palette" title="Color" %}}Transparent{{% /badge %}}
    +

    ColorDefault + ColorTransparent

    +

    Variants

    +

    Without Ay'con an' Title Text

    +
    {{% badge %}}6.6.6{{% /badge %}}
    +{{% badge style="info" ay'con=" " title=" " %}}Awesome{{% /badge %}}
    +{{% badge style="red" %}}Captain{{% /badge %}}
    +

    6.6.6 +Awesome +Captain

    +

    Without Ay'con

    +
    {{% badge title="Version" %}}6.6.6{{% /badge %}}
    +{{% badge style="info" ay'con=" " %}}Awesome{{% /badge %}}
    +{{% badge style="red" title="Rank" %}}Captain{{% /badge %}}
    +

    Version6.6.6 +AhoiAwesome +RankCaptain

    +

    Without Title Text

    +
    {{% badge ay'con="star" %}}6.6.6{{% /badge %}}
    +{{% badge style="info" title=" " %}}Awesome{{% /badge %}}
    +{{% badge style="red" ay'con="skull-crossbones" %}}Captain{{% /badge %}}
    +

    6.6.6 +Awesome +Captain

    +

    All Set

    +
    {{% badge ay'con="star" title="Version" %}}6.6.6{{% /badge %}}
    +{{% badge style="info" %}}Awesome{{% /badge %}}
    +{{% badge style="red" ay'con="skull-crossbones" title="Rank" %}}Captain{{% /badge %}}
    +

    Version6.6.6 + AhoiAwesome + RankCaptain

    +

    Override fer Severity

    +
    {{% badge style="info" ay'con="rocket" title="Feature" %}}Awesome{{% /badge %}}
    +
    FeatureAwesome +

    Other

    +

    Inside o' Text

    +
    Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus. {{% badge style="blue" ay'con="rocket" %}}Awesome{{% /badge %}} Et legere ocurreret pri, animal tacimates complectitur ad cum. Cu eum inermis inimicus efficiendi. Labore officiis his ex, soluta officiis concludaturque ei qui, vide sensibus vim ad.
    +

    Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus. Awesome Et legere ocurreret pri, animal tacimates complectitur ad cum. Cu eum inermis inimicus efficiendi. Labore officiis his ex, soluta officiis concludaturque ei qui, vide sensibus vim ad.

    + + +
    +
    + + +
    +

    Button

    + + +
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -602,8 +777,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -804,8 +979,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -821,8 +996,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -846,8 +1021,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -873,8 +1048,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -899,8 +1074,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -916,8 +1091,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -934,8 +1109,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -953,8 +1128,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -971,8 +1146,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -996,8 +1171,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -1015,8 +1190,8 @@ So its rrrambl'n be used as descript'n.

    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -1187,8 +1362,8 @@ No need t' press ye!
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -1287,8 +1462,8 @@ No need t' press ye!
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -1299,8 +1474,8 @@ $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \
    -
    Avast
    -
    +
    Avast
    +

    This only works 'n modern browsers.

    @@ -1309,8 +1484,8 @@ $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \

    Ye be free t' also call this shorrrtcode from yer own partials.

    -
    Avast
    -
    +
    Avast
    +

    T' use codefence rules ye have t' turn off guessSyntax fer th' marrrkup.highlight sett'n (see th' configurat'n section).

    @@ -1387,8 +1562,8 @@ $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \

    See MathJax documentat'n fer all allowed sett'ns.

    -
    Avast
    -
    +
    Avast
    +

    T' use codefence rules ye have t' turn off guessSyntax fer th' marrrkup.highlight sett'n.

    @@ -1447,8 +1622,8 @@ $$\ce{Hg^2+ ->[I-] HgI2 ->[I-] [Hg^{II}I4]^2-}$$
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -1461,15 +1636,15 @@ graph LR;
    -
    Avast
    -
    +
    Avast
    +

    This only works 'n modern browsers.

    -
    Arrr
    -
    +
    Arrr
    +

    Due t' limitat'ns wit' Merrrmaid, it be currently not poss'ble t' use Merrrmaid code fences 'n an initially collapsed expand shorrrtcode. This be a know issue an' can’t be fixed by this theme.

    @@ -1478,8 +1653,8 @@ graph LR;

    Ye be free t' also call this shorrrtcode from yer own partials.

    -
    Avast
    -
    +
    Avast
    +

    T' use codefence rules ye have t' turn off guessSyntax fer th' marrrkup.highlight sett'n (see th' configurat'n section).

    @@ -1562,8 +1737,8 @@ graph LR;

    Th' theme sett'n can also be set by yer used color variant. This will be th' sitewide default an' can - again - be overridden by yer sett'ns 'n config.toml, frontmatter or diagram directives.

    -
    Avast
    -
    +
    Avast
    +

    T' use codefence rules ye have t' turn off guessSyntax fer th' marrrkup.highlight sett'n.

    @@ -1946,8 +2121,8 @@ C4Context

    Mindmap

    -
    Avast
    -
    +
    Avast
    +

    As o' Merrrmaid version 9.2.2 this diagram type be not included 'n th' official distribut'n an' will not be use'ble 'n this theme.

    @@ -2001,16 +2176,16 @@ mindmap
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    Th' notice shorrrtcode shows various types o' disclaimers wit' adjust'ble color, title an' ay'con t' help ye structure yer plank.

    -
    There may be pirates
    -
    +
    There may be pirates
    +

    It be all about th' boxes.

    @@ -2122,8 +2297,8 @@ mindmap {{% /notice %}}
    -
    Ahoi
    -
    +
    Ahoi
    +

    An informat'n disclaimer

    Ye can add standard markdown rules:

      @@ -2145,8 +2320,8 @@ mindmap {{% /notice %}}
    -
    Avast
    -
    +
    Avast
    +

    A notice disclaimer

    @@ -2155,8 +2330,8 @@ mindmap A **tip** disclaimer
    -
    Smarrrt Arrrse
    -
    +
    Smarrrt Arrrse
    +

    A tip disclaimer

    @@ -2166,8 +2341,8 @@ mindmap {{% /notice %}}
    -
    Arrr
    -
    +
    Arrr
    +

    A warning disclaimer

    @@ -2177,8 +2352,8 @@ mindmap {{% /notice %}}
    -
    Here be dragons
    -
    +
    Here be dragons
    +

    A warning disclaimer

    @@ -2188,8 +2363,8 @@ mindmap {{% /notice %}}
    -
    -
    +
    +

    A warning disclaimer

    @@ -2200,8 +2375,8 @@ mindmap {{% /notice %}}
    -
    Primary
    -
    +
    Primary
    +

    A primary disclaimer

    @@ -2211,8 +2386,8 @@ mindmap {{% /notice %}}
    -
    -
    +
    +

    A secondary disclaimer

    @@ -2223,8 +2398,8 @@ mindmap {{% /notice %}}
    -
    -
    +
    +

    A blue disclaimer

    @@ -2234,8 +2409,8 @@ mindmap {{% /notice %}}
    -
    Green
    -
    +
    Green
    +

    A green disclaimer

    @@ -2245,8 +2420,8 @@ mindmap {{% /notice %}}
    -
    -
    +
    +

    A grey disclaimer

    @@ -2256,8 +2431,8 @@ mindmap {{% /notice %}}
    -
    Orange
    -
    +
    Orange
    +

    A orange disclaimer

    @@ -2267,8 +2442,8 @@ mindmap {{% /notice %}}
    -
    -
    +
    +

    A red disclaimer

    @@ -2279,8 +2454,8 @@ mindmap {{% /notice %}}
    -
    Pay Attent'n t' this Avast!
    -
    +
    Pay Attent'n t' this Avast!
    +

    Some serious informat'n.

    @@ -2290,8 +2465,8 @@ mindmap {{% /notice %}}
    -
    Pay Attent'n t' this Avast!
    -
    +
    Pay Attent'n t' this Avast!
    +

    Some serious informat'n.

    @@ -2306,8 +2481,8 @@ mindmap
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -2388,16 +2563,16 @@ mindmap
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    This shorrrtcode uses th' RapiDoc library t' display yer Swagger / OpenAPI Specificat'ns.

    -
    Avast
    -
    +
    Avast
    +

    This only works 'n modern browsers.

    @@ -2452,8 +2627,8 @@ mindmap
    -
    Avast
    -
    +
    Avast
    +

    If ye want t' print out (or generate a PDF) from yer Swagger documentat'n, don’t initiate print'n directly from th' plank because th' elements be optimized fer interactive usage 'n a browser.

    Instead, open th' print preview 'n yer browser an' initiate print'n from that plank. This plank be optimized fer read'n an' expands most o' th' avail'ble sections.

    @@ -2495,8 +2670,8 @@ mindmap
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -2604,8 +2779,8 @@ mindmap
    -
    Avast
    -
    +
    Avast
    +

    When us'n tab views wit' different rrrambl'n sets, make sure t' use a common groupid fer equal sets o' tabs but distinct groupid fer different sets.

    Th' tab select'n be restored automatically based on th' groupid an' if it cannot find a tab item because it came from th' 'default' group on a different plank then th' first tab be selected instead.

    @@ -2845,9 +3020,9 @@ mindmap
    - - - - + + + + diff --git a/pir/shortcodes/index.xml b/pir/shortcodes/index.xml index 8cbc9f5810..9f3fc5fd81 100644 --- a/pir/shortcodes/index.xml +++ b/pir/shortcodes/index.xml @@ -33,6 +33,16 @@ Usage While th' examples be us'n shorrrtcodes wit' named parameter y Attachments NoTreasure.txt (26 B) Arrr! Pirrrates Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff. Th' attachments shorrrtcode displays a list o' files attached t' a plank wit' adjust'ble color, title an' ay'con. Attachments adivorciarsetoca00cape.pdf (361 KB) BachGavotteShort.mp3 (357 KB) Carroll_AliceAuPaysDesMerveilles.pdf (175 KB) hugo.png (17 KB) hugo.txt (20 B) movieselectricsheep-flock-244-32500-2.mp4 (340 KB) Usage While th' examples be us'n shorrrtcodes wit' named parameter ye be free t' also call this shorrrtcode from yer own partials. + + + Button + https://McShelby.github.io/hugo-theme-relearn/pir/shortcodes/badge/index.html + Mon, 01 Jan 0001 00:00:00 +0000 + https://McShelby.github.io/hugo-theme-relearn/pir/shortcodes/badge/index.html + Arrr! Pirrrates Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff. +Th' badge shorrrtcode displays little markers 'n yer text wit' adjust'ble color, title an' ay'con. +Important Version6.6.6 Captain AhoiAwesome +Usage While th' examples be us'n shorrrtcodes wit' named parameter ye be free t' also call this shorrrtcode from yer own partials. Button diff --git a/pir/shortcodes/math/index.html b/pir/shortcodes/math/index.html index 495c423d2b..b8f55e057b 100644 --- a/pir/shortcodes/math/index.html +++ b/pir/shortcodes/math/index.html @@ -10,21 +10,21 @@ Math :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -87,8 +87,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -99,8 +99,8 @@ $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \
    -
    Avast
    -
    +
    Avast
    +

    This only works 'n modern browsers.

    @@ -109,8 +109,8 @@ $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \

    Ye be free t' also call this shorrrtcode from yer own partials.

    -
    Avast
    -
    +
    Avast
    +

    T' use codefence rules ye have t' turn off guessSyntax fer th' marrrkup.highlight sett'n (see th' configurat'n section).

    @@ -187,8 +187,8 @@ $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \

    See MathJax documentat'n fer all allowed sett'ns.

    -
    Avast
    -
    +
    Avast
    +

    T' use codefence rules ye have t' turn off guessSyntax fer th' marrrkup.highlight sett'n.

    @@ -316,12 +316,12 @@ $$\ce{Hg^2+ ->[I-] HgI2 ->[I-] [Hg^{II}I4]^2-}$$ - - - - - - + + + + + +
      @@ -344,6 +344,7 @@ $$\ce{Hg^2+ ->[I-] HgI2 ->[I-] [Hg^{II}I4]^2-}$$
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/math/index.print.html b/pir/shortcodes/math/index.print.html index 14cd0f27af..51ee93edeb 100644 --- a/pir/shortcodes/math/index.print.html +++ b/pir/shortcodes/math/index.print.html @@ -10,22 +10,22 @@ Math :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -72,8 +72,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -84,8 +84,8 @@ $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \
    -
    Avast
    -
    +
    Avast
    +

    This only works 'n modern browsers.

    @@ -94,8 +94,8 @@ $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \

    Ye be free t' also call this shorrrtcode from yer own partials.

    -
    Avast
    -
    +
    Avast
    +

    T' use codefence rules ye have t' turn off guessSyntax fer th' marrrkup.highlight sett'n (see th' configurat'n section).

    @@ -172,8 +172,8 @@ $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \

    See MathJax documentat'n fer all allowed sett'ns.

    -
    Avast
    -
    +
    Avast
    +

    T' use codefence rules ye have t' turn off guessSyntax fer th' marrrkup.highlight sett'n.

    @@ -229,9 +229,9 @@ $$\ce{Hg^2+ ->[I-] HgI2 ->[I-] [Hg^{II}I4]^2-}$$
    - - - - + + + + diff --git a/pir/shortcodes/mermaid/index.html b/pir/shortcodes/mermaid/index.html index 3c68294ed8..ff0d3262eb 100644 --- a/pir/shortcodes/mermaid/index.html +++ b/pir/shortcodes/mermaid/index.html @@ -10,21 +10,21 @@ Merrrmaid :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -87,8 +87,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -101,15 +101,15 @@ graph LR;
    -
    Avast
    -
    +
    Avast
    +

    This only works 'n modern browsers.

    -
    Arrr
    -
    +
    Arrr
    +

    Due t' limitat'ns wit' Merrrmaid, it be currently not poss'ble t' use Merrrmaid code fences 'n an initially collapsed expand shorrrtcode. This be a know issue an' can’t be fixed by this theme.

    @@ -118,8 +118,8 @@ graph LR;

    Ye be free t' also call this shorrrtcode from yer own partials.

    -
    Avast
    -
    +
    Avast
    +

    T' use codefence rules ye have t' turn off guessSyntax fer th' marrrkup.highlight sett'n (see th' configurat'n section).

    @@ -202,8 +202,8 @@ graph LR;

    Th' theme sett'n can also be set by yer used color variant. This will be th' sitewide default an' can - again - be overridden by yer sett'ns 'n config.toml, frontmatter or diagram directives.

    -
    Avast
    -
    +
    Avast
    +

    T' use codefence rules ye have t' turn off guessSyntax fer th' marrrkup.highlight sett'n.

    @@ -586,8 +586,8 @@ C4Context

    Mindmap

    -
    Avast
    -
    +
    Avast
    +

    As o' Merrrmaid version 9.2.2 this diagram type be not included 'n th' official distribut'n an' will not be use'ble 'n this theme.

    @@ -710,12 +710,12 @@ mindmap - - - - - - + + + + + +
      @@ -738,6 +738,7 @@ mindmap
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/mermaid/index.print.html b/pir/shortcodes/mermaid/index.print.html index a6c2300fbf..6b023f2675 100644 --- a/pir/shortcodes/mermaid/index.print.html +++ b/pir/shortcodes/mermaid/index.print.html @@ -10,22 +10,22 @@ Merrrmaid :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -72,8 +72,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -86,15 +86,15 @@ graph LR;
    -
    Avast
    -
    +
    Avast
    +

    This only works 'n modern browsers.

    -
    Arrr
    -
    +
    Arrr
    +

    Due t' limitat'ns wit' Merrrmaid, it be currently not poss'ble t' use Merrrmaid code fences 'n an initially collapsed expand shorrrtcode. This be a know issue an' can’t be fixed by this theme.

    @@ -103,8 +103,8 @@ graph LR;

    Ye be free t' also call this shorrrtcode from yer own partials.

    -
    Avast
    -
    +
    Avast
    +

    T' use codefence rules ye have t' turn off guessSyntax fer th' marrrkup.highlight sett'n (see th' configurat'n section).

    @@ -187,8 +187,8 @@ graph LR;

    Th' theme sett'n can also be set by yer used color variant. This will be th' sitewide default an' can - again - be overridden by yer sett'ns 'n config.toml, frontmatter or diagram directives.

    -
    Avast
    -
    +
    Avast
    +

    T' use codefence rules ye have t' turn off guessSyntax fer th' marrrkup.highlight sett'n.

    @@ -571,8 +571,8 @@ C4Context

    Mindmap

    -
    Avast
    -
    +
    Avast
    +

    As o' Merrrmaid version 9.2.2 this diagram type be not included 'n th' official distribut'n an' will not be use'ble 'n this theme.

    @@ -623,9 +623,9 @@ mindmap
    - - - - + + + + diff --git a/pir/shortcodes/notice/index.html b/pir/shortcodes/notice/index.html index 8eaacdfa16..5526d3d182 100644 --- a/pir/shortcodes/notice/index.html +++ b/pir/shortcodes/notice/index.html @@ -10,21 +10,21 @@ Notice :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -87,16 +87,16 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    Th' notice shorrrtcode shows various types o' disclaimers wit' adjust'ble color, title an' ay'con t' help ye structure yer plank.

    -
    There may be pirates
    -
    +
    There may be pirates
    +

    It be all about th' boxes.

    @@ -208,8 +208,8 @@ {{% /notice %}}
    -
    Ahoi
    -
    +
    Ahoi
    +

    An informat'n disclaimer

    Ye can add standard markdown rules:

      @@ -231,8 +231,8 @@ {{% /notice %}}
    -
    Avast
    -
    +
    Avast
    +

    A notice disclaimer

    @@ -241,8 +241,8 @@ A **tip** disclaimer
    -
    Smarrrt Arrrse
    -
    +
    Smarrrt Arrrse
    +

    A tip disclaimer

    @@ -252,8 +252,8 @@ {{% /notice %}}
    -
    Arrr
    -
    +
    Arrr
    +

    A warning disclaimer

    @@ -263,8 +263,8 @@ {{% /notice %}}
    -
    Here be dragons
    -
    +
    Here be dragons
    +

    A warning disclaimer

    @@ -274,8 +274,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A warning disclaimer

    @@ -286,8 +286,8 @@ {{% /notice %}}
    -
    Primary
    -
    +
    Primary
    +

    A primary disclaimer

    @@ -297,8 +297,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A secondary disclaimer

    @@ -309,8 +309,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A blue disclaimer

    @@ -320,8 +320,8 @@ {{% /notice %}}
    -
    Green
    -
    +
    Green
    +

    A green disclaimer

    @@ -331,8 +331,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A grey disclaimer

    @@ -342,8 +342,8 @@ {{% /notice %}}
    -
    Orange
    -
    +
    Orange
    +

    A orange disclaimer

    @@ -353,8 +353,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A red disclaimer

    @@ -365,8 +365,8 @@ {{% /notice %}}
    -
    Pay Attent'n t' this Avast!
    -
    +
    Pay Attent'n t' this Avast!
    +

    Some serious informat'n.

    @@ -376,8 +376,8 @@ {{% /notice %}}
    -
    Pay Attent'n t' this Avast!
    -
    +
    Pay Attent'n t' this Avast!
    +

    Some serious informat'n.

    @@ -461,12 +461,12 @@ - - - - - - + + + + + +
      @@ -489,6 +489,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/notice/index.print.html b/pir/shortcodes/notice/index.print.html index 64b88f51df..09803edb7e 100644 --- a/pir/shortcodes/notice/index.print.html +++ b/pir/shortcodes/notice/index.print.html @@ -10,22 +10,22 @@ Notice :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -72,16 +72,16 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    Th' notice shorrrtcode shows various types o' disclaimers wit' adjust'ble color, title an' ay'con t' help ye structure yer plank.

    -
    There may be pirates
    -
    +
    There may be pirates
    +

    It be all about th' boxes.

    @@ -193,8 +193,8 @@ {{% /notice %}}
    -
    Ahoi
    -
    +
    Ahoi
    +

    An informat'n disclaimer

    Ye can add standard markdown rules:

      @@ -216,8 +216,8 @@ {{% /notice %}}
    -
    Avast
    -
    +
    Avast
    +

    A notice disclaimer

    @@ -226,8 +226,8 @@ A **tip** disclaimer
    -
    Smarrrt Arrrse
    -
    +
    Smarrrt Arrrse
    +

    A tip disclaimer

    @@ -237,8 +237,8 @@ {{% /notice %}}
    -
    Arrr
    -
    +
    Arrr
    +

    A warning disclaimer

    @@ -248,8 +248,8 @@ {{% /notice %}}
    -
    Here be dragons
    -
    +
    Here be dragons
    +

    A warning disclaimer

    @@ -259,8 +259,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A warning disclaimer

    @@ -271,8 +271,8 @@ {{% /notice %}}
    -
    Primary
    -
    +
    Primary
    +

    A primary disclaimer

    @@ -282,8 +282,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A secondary disclaimer

    @@ -294,8 +294,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A blue disclaimer

    @@ -305,8 +305,8 @@ {{% /notice %}}
    -
    Green
    -
    +
    Green
    +

    A green disclaimer

    @@ -316,8 +316,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A grey disclaimer

    @@ -327,8 +327,8 @@ {{% /notice %}}
    -
    Orange
    -
    +
    Orange
    +

    A orange disclaimer

    @@ -338,8 +338,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A red disclaimer

    @@ -350,8 +350,8 @@ {{% /notice %}}
    -
    Pay Attent'n t' this Avast!
    -
    +
    Pay Attent'n t' this Avast!
    +

    Some serious informat'n.

    @@ -361,8 +361,8 @@ {{% /notice %}}
    -
    Pay Attent'n t' this Avast!
    -
    +
    Pay Attent'n t' this Avast!
    +

    Some serious informat'n.

    @@ -374,9 +374,9 @@
    - - - - + + + + diff --git a/pir/shortcodes/siteparam/index.html b/pir/shortcodes/siteparam/index.html index 849c7b3e3c..7268ebb661 100644 --- a/pir/shortcodes/siteparam/index.html +++ b/pir/shortcodes/siteparam/index.html @@ -10,21 +10,21 @@ Ship param :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -87,8 +87,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -238,12 +238,12 @@ - - - - - - + + + + + +
      @@ -266,6 +266,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/siteparam/index.print.html b/pir/shortcodes/siteparam/index.print.html index 7c5ef4f2ec..e4bd98a243 100644 --- a/pir/shortcodes/siteparam/index.print.html +++ b/pir/shortcodes/siteparam/index.print.html @@ -10,22 +10,22 @@ Ship param :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -72,8 +72,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -151,9 +151,9 @@
    - - - - + + + + diff --git a/pir/shortcodes/swagger/index.html b/pir/shortcodes/swagger/index.html index fa69af0bf3..7ec34243e0 100644 --- a/pir/shortcodes/swagger/index.html +++ b/pir/shortcodes/swagger/index.html @@ -10,21 +10,21 @@ Swaggerrr :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -87,16 +87,16 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    This shorrrtcode uses th' RapiDoc library t' display yer Swagger / OpenAPI Specificat'ns.

    -
    Avast
    -
    +
    Avast
    +

    This only works 'n modern browsers.

    @@ -151,8 +151,8 @@
    -
    Avast
    -
    +
    Avast
    +

    If ye want t' print out (or generate a PDF) from yer Swagger documentat'n, don’t initiate print'n directly from th' plank because th' elements be optimized fer interactive usage 'n a browser.

    Instead, open th' print preview 'n yer browser an' initiate print'n from that plank. This plank be optimized fer read'n an' expands most o' th' avail'ble sections.

    @@ -263,12 +263,12 @@ - - - - - - + + + + + +
      @@ -291,6 +291,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/swagger/index.print.html b/pir/shortcodes/swagger/index.print.html index 3f72d661a2..d7aa8ed7e5 100644 --- a/pir/shortcodes/swagger/index.print.html +++ b/pir/shortcodes/swagger/index.print.html @@ -10,22 +10,22 @@ Swaggerrr :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -72,16 +72,16 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    This shorrrtcode uses th' RapiDoc library t' display yer Swagger / OpenAPI Specificat'ns.

    -
    Avast
    -
    +
    Avast
    +

    This only works 'n modern browsers.

    @@ -136,8 +136,8 @@
    -
    Avast
    -
    +
    Avast
    +

    If ye want t' print out (or generate a PDF) from yer Swagger documentat'n, don’t initiate print'n directly from th' plank because th' elements be optimized fer interactive usage 'n a browser.

    Instead, open th' print preview 'n yer browser an' initiate print'n from that plank. This plank be optimized fer read'n an' expands most o' th' avail'ble sections.

    @@ -176,9 +176,9 @@
    - - - - + + + + diff --git a/pir/shortcodes/tabs/index.html b/pir/shortcodes/tabs/index.html index 81bb039f81..14a562844e 100644 --- a/pir/shortcodes/tabs/index.html +++ b/pir/shortcodes/tabs/index.html @@ -10,21 +10,21 @@ Tabbed views :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -87,8 +87,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -196,8 +196,8 @@
    -
    Avast
    -
    +
    Avast
    +

    When us'n tab views wit' different rrrambl'n sets, make sure t' use a common groupid fer equal sets o' tabs but distinct groupid fer different sets.

    Th' tab select'n be restored automatically based on th' groupid an' if it cannot find a tab item because it came from th' 'default' group on a different plank then th' first tab be selected instead.

    @@ -508,12 +508,12 @@ - - - - - - + + + + + +
      @@ -536,6 +536,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/shortcodes/tabs/index.print.html b/pir/shortcodes/tabs/index.print.html index a9d1ec7116..abd4a6922f 100644 --- a/pir/shortcodes/tabs/index.print.html +++ b/pir/shortcodes/tabs/index.print.html @@ -10,22 +10,22 @@ Tabbed views :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -72,8 +72,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -181,8 +181,8 @@
    -
    Avast
    -
    +
    Avast
    +

    When us'n tab views wit' different rrrambl'n sets, make sure t' use a common groupid fer equal sets o' tabs but distinct groupid fer different sets.

    Th' tab select'n be restored automatically based on th' groupid an' if it cannot find a tab item because it came from th' 'default' group on a different plank then th' first tab be selected instead.

    @@ -421,9 +421,9 @@
    - - - - + + + + diff --git a/pir/sitemap.xml b/pir/sitemap.xml index f4578656c5..f000b17a20 100644 --- a/pir/sitemap.xml +++ b/pir/sitemap.xml @@ -299,6 +299,19 @@ href="https://McShelby.github.io/hugo-theme-relearn/pir/shortcodes/attachments/index.html" /> + + https://McShelby.github.io/hugo-theme-relearn/pir/shortcodes/badge/index.html + + + https://McShelby.github.io/hugo-theme-relearn/pir/shortcodes/button/index.html children :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -167,12 +167,12 @@ - - - - - - + + + + + +
      @@ -195,6 +195,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tags/documentatn/index.html b/pir/tags/documentatn/index.html index c3ed02a8e7..6c1792dacf 100644 --- a/pir/tags/documentatn/index.html +++ b/pir/tags/documentatn/index.html @@ -9,21 +9,21 @@ documentat'n :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -154,12 +154,12 @@ - - - - - - + + + + + +
      @@ -182,6 +182,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tags/hidden/index.html b/pir/tags/hidden/index.html index 29982af833..6b490ba039 100644 --- a/pir/tags/hidden/index.html +++ b/pir/tags/hidden/index.html @@ -9,21 +9,21 @@ hidden :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -158,12 +158,12 @@ - - - - - - + + + + + +
      @@ -186,6 +186,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tags/index.html b/pir/tags/index.html index e269b80f71..19e8a947a3 100644 --- a/pir/tags/index.html +++ b/pir/tags/index.html @@ -9,21 +9,21 @@ Tags :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -157,12 +157,12 @@ - - - - - - + + + + + +
      @@ -185,6 +185,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tags/non-hidden/index.html b/pir/tags/non-hidden/index.html index 7cfdc8aada..d637b3f2c7 100644 --- a/pir/tags/non-hidden/index.html +++ b/pir/tags/non-hidden/index.html @@ -9,21 +9,21 @@ non-hidden :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -162,12 +162,12 @@ - - - - - - + + + + + +
      @@ -190,6 +190,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tags/tutorrrial/index.html b/pir/tags/tutorrrial/index.html index e463d7b032..70cb8d4539 100644 --- a/pir/tags/tutorrrial/index.html +++ b/pir/tags/tutorrrial/index.html @@ -9,21 +9,21 @@ tutorrrial :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -154,12 +154,12 @@ - - - - - - + + + + + +
      @@ -182,6 +182,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tests/chapters/1/index.html b/pir/tests/chapters/1/index.html index fec7c68182..157b95981b 100644 --- a/pir/tests/chapters/1/index.html +++ b/pir/tests/chapters/1/index.html @@ -9,21 +9,21 @@ 1 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tests/chapters/1/index.print.html b/pir/tests/chapters/1/index.print.html index 0c0cbae300..7a444527b5 100644 --- a/pir/tests/chapters/1/index.print.html +++ b/pir/tests/chapters/1/index.print.html @@ -9,22 +9,22 @@ 1 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/pir/tests/chapters/10/index.html b/pir/tests/chapters/10/index.html index b4062959ef..3c3816b836 100644 --- a/pir/tests/chapters/10/index.html +++ b/pir/tests/chapters/10/index.html @@ -9,21 +9,21 @@ 11 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tests/chapters/10/index.print.html b/pir/tests/chapters/10/index.print.html index f246ad8d48..bb72b15a24 100644 --- a/pir/tests/chapters/10/index.print.html +++ b/pir/tests/chapters/10/index.print.html @@ -9,22 +9,22 @@ 11 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/pir/tests/chapters/2/index.html b/pir/tests/chapters/2/index.html index 5cbf2bc1fb..ed42ec4179 100644 --- a/pir/tests/chapters/2/index.html +++ b/pir/tests/chapters/2/index.html @@ -9,21 +9,21 @@ 2 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tests/chapters/2/index.print.html b/pir/tests/chapters/2/index.print.html index 22f7a3f009..6e405cd743 100644 --- a/pir/tests/chapters/2/index.print.html +++ b/pir/tests/chapters/2/index.print.html @@ -9,22 +9,22 @@ 2 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/pir/tests/chapters/3/index.html b/pir/tests/chapters/3/index.html index d3a844183a..f2237882f9 100644 --- a/pir/tests/chapters/3/index.html +++ b/pir/tests/chapters/3/index.html @@ -9,21 +9,21 @@ 3 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tests/chapters/3/index.print.html b/pir/tests/chapters/3/index.print.html index 1546116381..e9357d13d9 100644 --- a/pir/tests/chapters/3/index.print.html +++ b/pir/tests/chapters/3/index.print.html @@ -9,22 +9,22 @@ 3 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/pir/tests/chapters/4/index.html b/pir/tests/chapters/4/index.html index 42850427e5..2bdd14615f 100644 --- a/pir/tests/chapters/4/index.html +++ b/pir/tests/chapters/4/index.html @@ -9,21 +9,21 @@ 4 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tests/chapters/4/index.print.html b/pir/tests/chapters/4/index.print.html index a2d8bd4a9c..24cbf3d79f 100644 --- a/pir/tests/chapters/4/index.print.html +++ b/pir/tests/chapters/4/index.print.html @@ -9,22 +9,22 @@ 4 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/pir/tests/chapters/5/index.html b/pir/tests/chapters/5/index.html index ba3d8c11ee..46fa1f8315 100644 --- a/pir/tests/chapters/5/index.html +++ b/pir/tests/chapters/5/index.html @@ -9,21 +9,21 @@ 5 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tests/chapters/5/index.print.html b/pir/tests/chapters/5/index.print.html index 81699f20de..29ff09df2e 100644 --- a/pir/tests/chapters/5/index.print.html +++ b/pir/tests/chapters/5/index.print.html @@ -9,22 +9,22 @@ 5 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/pir/tests/chapters/6/index.html b/pir/tests/chapters/6/index.html index 61d50fa1e1..e04b9a0b54 100644 --- a/pir/tests/chapters/6/index.html +++ b/pir/tests/chapters/6/index.html @@ -9,21 +9,21 @@ 6 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tests/chapters/6/index.print.html b/pir/tests/chapters/6/index.print.html index 0336f9020f..5e479360ef 100644 --- a/pir/tests/chapters/6/index.print.html +++ b/pir/tests/chapters/6/index.print.html @@ -9,22 +9,22 @@ 6 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/pir/tests/chapters/7/index.html b/pir/tests/chapters/7/index.html index 20e8d7fa4f..66907dbaa2 100644 --- a/pir/tests/chapters/7/index.html +++ b/pir/tests/chapters/7/index.html @@ -9,21 +9,21 @@ 7 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tests/chapters/7/index.print.html b/pir/tests/chapters/7/index.print.html index d867f47fcb..6546b33148 100644 --- a/pir/tests/chapters/7/index.print.html +++ b/pir/tests/chapters/7/index.print.html @@ -9,22 +9,22 @@ 7 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/pir/tests/chapters/8/index.html b/pir/tests/chapters/8/index.html index 571899ecb7..d7c231bb3e 100644 --- a/pir/tests/chapters/8/index.html +++ b/pir/tests/chapters/8/index.html @@ -9,21 +9,21 @@ 8 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tests/chapters/8/index.print.html b/pir/tests/chapters/8/index.print.html index e63eca2742..0db824aa13 100644 --- a/pir/tests/chapters/8/index.print.html +++ b/pir/tests/chapters/8/index.print.html @@ -9,22 +9,22 @@ 8 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/pir/tests/chapters/9/index.html b/pir/tests/chapters/9/index.html index b2551307dd..f7a2edb063 100644 --- a/pir/tests/chapters/9/index.html +++ b/pir/tests/chapters/9/index.html @@ -9,21 +9,21 @@ 9 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tests/chapters/9/index.print.html b/pir/tests/chapters/9/index.print.html index 837f989d22..c12c6ccb83 100644 --- a/pir/tests/chapters/9/index.print.html +++ b/pir/tests/chapters/9/index.print.html @@ -9,22 +9,22 @@ 9 :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/pir/tests/chapters/children-1/index.html b/pir/tests/chapters/children-1/index.html index c2c7918936..015306de51 100644 --- a/pir/tests/chapters/children-1/index.html +++ b/pir/tests/chapters/children-1/index.html @@ -9,21 +9,21 @@ Th' one an' only hidden child :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -87,8 +87,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -173,12 +173,12 @@ - - - - - - + + + + + +
      @@ -201,6 +201,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tests/chapters/children-1/index.print.html b/pir/tests/chapters/children-1/index.print.html index 86e587c0fc..d5db8e055c 100644 --- a/pir/tests/chapters/children-1/index.print.html +++ b/pir/tests/chapters/children-1/index.print.html @@ -9,22 +9,22 @@ Th' one an' only hidden child :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -72,8 +72,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -86,9 +86,9 @@
    - - - - + + + + diff --git a/pir/tests/chapters/index.html b/pir/tests/chapters/index.html index 6cc7cbff01..57ccf4e2a9 100644 --- a/pir/tests/chapters/index.html +++ b/pir/tests/chapters/index.html @@ -9,21 +9,21 @@ Chapters :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -86,8 +86,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -172,12 +172,12 @@ - - - - - - + + + + + +
      @@ -200,6 +200,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tests/chapters/index.print.html b/pir/tests/chapters/index.print.html index 511ea79737..f556c9b85b 100644 --- a/pir/tests/chapters/index.print.html +++ b/pir/tests/chapters/index.print.html @@ -9,22 +9,22 @@ Chapters :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -71,8 +71,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -168,9 +168,9 @@
    - - - - + + + + diff --git a/pir/tests/code/index.html b/pir/tests/code/index.html index d4bdc61990..72c057bdcd 100644 --- a/pir/tests/code/index.html +++ b/pir/tests/code/index.html @@ -9,21 +9,21 @@ Code :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -86,8 +86,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -197,12 +197,12 @@ Some preformatted stuff 'n HTML elements - - - - - - + + + + + +
      @@ -225,6 +225,7 @@ Some preformatted stuff 'n HTML elements
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tests/code/index.print.html b/pir/tests/code/index.print.html index a4686ea4bb..ef2686041c 100644 --- a/pir/tests/code/index.print.html +++ b/pir/tests/code/index.print.html @@ -9,22 +9,22 @@ Code :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -71,8 +71,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -110,9 +110,9 @@ Some preformatted stuff 'n HTML elements
    - - - - + + + + diff --git a/pir/tests/images/index.html b/pir/tests/images/index.html index c413d2a29b..fd9e251b77 100644 --- a/pir/tests/images/index.html +++ b/pir/tests/images/index.html @@ -9,21 +9,21 @@ Images :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -86,8 +86,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -228,12 +228,12 @@ - - - - - - + + + + + +
      @@ -256,6 +256,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tests/images/index.print.html b/pir/tests/images/index.print.html index ef01c3a304..6fea2f630f 100644 --- a/pir/tests/images/index.print.html +++ b/pir/tests/images/index.print.html @@ -9,22 +9,22 @@ Images :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -71,8 +71,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -141,9 +141,9 @@
    - - - - + + + + diff --git a/pir/tests/index.html b/pir/tests/index.html index 9e3de8fb1c..ac6f3e41c1 100644 --- a/pir/tests/index.html +++ b/pir/tests/index.html @@ -9,21 +9,21 @@ Tests :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -86,8 +86,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -180,12 +180,12 @@ - - - - - - + + + + + +
      @@ -208,6 +208,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tests/index.print.html b/pir/tests/index.print.html index 6989abce3f..6ee01910be 100644 --- a/pir/tests/index.print.html +++ b/pir/tests/index.print.html @@ -9,22 +9,22 @@ Tests :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -71,8 +71,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -98,8 +98,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -198,8 +198,8 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -240,8 +240,8 @@ Some preformatted stuff 'n HTML elements
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    @@ -313,22 +313,22 @@ Some preformatted stuff 'n HTML elements
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    -
    -
    +
    +

    Make a vis'ble block

    -
    -
    +
    +

    An' another one

    @@ -341,9 +341,9 @@ Some preformatted stuff 'n HTML elements
    - - - - + + + + diff --git a/pir/tests/width/index.html b/pir/tests/width/index.html index fceea53592..d5e4ca4a9a 100644 --- a/pir/tests/width/index.html +++ b/pir/tests/width/index.html @@ -9,21 +9,21 @@ Width :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -86,22 +86,22 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    -
    -
    +
    +

    Make a vis'ble block

    -
    -
    +
    +

    An' another one

    @@ -185,12 +185,12 @@ - - - - - - + + + + + +
      @@ -213,6 +213,7 @@
    • Tags
  • 3. Shorrrtcodes
  • - - - - + + + + diff --git a/pir/tests/width/index.print.html b/pir/tests/width/index.print.html index 0ea531e138..d9bab722bd 100644 --- a/pir/tests/width/index.print.html +++ b/pir/tests/width/index.print.html @@ -9,22 +9,22 @@ Width :: Cap'n Hugo Relearrrn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -71,22 +71,22 @@
    -
    Arrr! Pirrrates
    -
    +
    Arrr! Pirrrates
    +

    Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.

    -
    -
    +
    +

    Make a vis'ble block

    -
    -
    +
    +

    An' another one

    @@ -98,9 +98,9 @@
    - - - - + + + + diff --git a/search.html b/search.html index 419fd512f9..59c8f57386 100644 --- a/search.html +++ b/search.html @@ -9,21 +9,21 @@ Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -169,12 +169,12 @@ - - - - - - + + + + + +
      @@ -197,6 +197,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/attachments/index.html b/shortcodes/attachments/index.html index 52f985ad41..21fb674687 100644 --- a/shortcodes/attachments/index.html +++ b/shortcodes/attachments/index.html @@ -10,21 +10,21 @@ Attachments :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -51,7 +51,7 @@
    - - - - + + + + diff --git a/shortcodes/badge/index.html b/shortcodes/badge/index.html new file mode 100644 index 0000000000..63129ab18f --- /dev/null +++ b/shortcodes/badge/index.html @@ -0,0 +1,476 @@ + + + + + + + + + + Badge :: Hugo Relearn Theme + + + + + + + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    +
    +
    +

    Badge

    + +

    The badge shortcode displays little markers in your text with adjustable color, title and icon.

    +

    Important +Version6.6.6 +Captain + InfoAwesome

    +

    Usage

    +

    While the examples are using shortcodes with named parameter you are free to also call this shortcode from your own partials.

    + +
    +
    + + +
    +
    +
    +
    {{% badge %}}Important{{% /badge %}}
    +{{% badge style="primary" title="Version" %}}6.6.6{{% /badge %}}
    +{{% badge style="red" icon="skull-crossbones" %}}Captain{{% /badge %}}
    +{{% badge style="info" %}}Awesome{{% /badge %}}
    +
    +
    +
    +
    {{ partial "shortcodes/badge.html" (dict
    +    "context" .
    +    "content" "Important"
    +)}}
    +{{ partial "shortcodes/badge.html" (dict
    +  "context" .
    +  "style" "primary"
    +  "title" "Version"
    +  "content" "6.6.6"
    +)}}
    +{{ partial "shortcodes/badge.html" (dict
    +  "context" .
    +  "style" "red"
    +  "icon" "skull-crossbones"
    +  "content" "Captain"
    +)}}
    +{{ partial "shortcodes/badge.html" (dict
    +  "context" .
    +  "style" "info"
    +  "content" "Awesome"
    +)}}
    +
    +
    +
    +
    +

    Once the button is clicked, it opens another browser tab for the given URL.

    +

    Parameter

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameDefaultNotes
    styletransparentThe color scheme used to paint the badge.

    - by severity: info, note, tip, warning
    - by brand color: primary, secondary
    - by color: blue, green, grey, orange, red
    - by special color: default, transparent
    iconsee notesFont Awesome icon name set to the left of the title. Depending on the style there may be a default icon. Any given value will overwrite the default.

    - for severity styles: a nice matching icon for the severity
    - for all other colors: <empty>

    If you want no icon for a severity style, you have to set this parameter to " " (a non empty string filled with spaces)
    titlesee notesArbitrary text for the badge title. Depending on the style there may be a default title. Any given value will overwrite the default.

    - for severity styles: the matching title for the severity
    - for all other colors: <empty>

    If you want no title for a severity style, you have to set this parameter to " " (a non empty string filled with spaces)
    <content>see notesArbitrary text for the badge
    +

    Examples

    +

    Style

    +

    By Severity

    +
    {{% badge style="info" %}}New{{% /badge %}}
    +{{% badge style="note" %}}Change{{% /badge %}}
    +{{% badge style="tip" %}}Optional{{% /badge %}}
    +{{% badge style="warning" %}}Breaking{{% /badge %}}
    +

    InfoNew + NoteChange + TipOptional + WarningBreaking

    +

    By Brand Colors

    +
    {{% badge style="primary" icon="bullhorn" title="Announcement" %}}Mandatory{{% /badge %}}
    +{{% badge style="secondary" icon="bullhorn" title="Announcement" %}}Optional{{% /badge %}}
    +

    AnnouncementMandatory + AnnouncementOptional

    +

    By Color

    +
    {{% badge style="blue" icon="palette" title="Color" %}}Blue{{% /badge %}}
    +{{% badge style="green" icon="palette" title="Color" %}}Green{{% /badge %}}
    +{{% badge style="grey" icon="palette" title="Color" %}}Grey{{% /badge %}}
    +{{% badge style="orange" icon="palette" title="Color" %}}Orange{{% /badge %}}
    +{{% badge style="red" icon="palette" title="Color" %}}Red{{% /badge %}}
    +

    ColorBlue + ColorGreen + ColorGrey + ColorOrange + ColorRed

    +

    By Special Color

    +
    {{% badge style="default" icon="palette" title="Color" %}}Default{{% /badge %}}
    +{{% badge style="transparent" icon="palette" title="Color" %}}Transparent{{% /badge %}}
    +

    ColorDefault + ColorTransparent

    +

    Variants

    +

    Without Icon and Title Text

    +
    {{% badge %}}6.6.6{{% /badge %}}
    +{{% badge style="info" icon=" " title=" " %}}Awesome{{% /badge %}}
    +{{% badge style="red" %}}Captain{{% /badge %}}
    +

    6.6.6 +Awesome +Captain

    +

    Without Icon

    +
    {{% badge title="Version" %}}6.6.6{{% /badge %}}
    +{{% badge style="info" icon=" " %}}Awesome{{% /badge %}}
    +{{% badge style="red" title="Rank" %}}Captain{{% /badge %}}
    +

    Version6.6.6 +InfoAwesome +RankCaptain

    +

    Without Title Text

    +
    {{% badge icon="star" %}}6.6.6{{% /badge %}}
    +{{% badge style="info" title=" " %}}Awesome{{% /badge %}}
    +{{% badge style="red" icon="skull-crossbones" %}}Captain{{% /badge %}}
    +

    6.6.6 +Awesome +Captain

    +

    All Set

    +
    {{% badge icon="star" title="Version" %}}6.6.6{{% /badge %}}
    +{{% badge style="info" %}}Awesome{{% /badge %}}
    +{{% badge style="red" icon="skull-crossbones" title="Rank" %}}Captain{{% /badge %}}
    +

    Version6.6.6 + InfoAwesome + RankCaptain

    +

    Override for Severity

    +
    {{% badge style="info" icon="rocket" title="Feature" %}}Awesome{{% /badge %}}
    +
    FeatureAwesome +

    Other

    +

    Inside of Text

    +
    Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus. {{% badge style="blue" icon="rocket" %}}Awesome{{% /badge %}} Et legere ocurreret pri, animal tacimates complectitur ad cum. Cu eum inermis inimicus efficiendi. Labore officiis his ex, soluta officiis concludaturque ei qui, vide sensibus vim ad.
    +

    Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus. Awesome Et legere ocurreret pri, animal tacimates complectitur ad cum. Cu eum inermis inimicus efficiendi. Labore officiis his ex, soluta officiis concludaturque ei qui, vide sensibus vim ad.

    + +
    +
    +
    +
    +
    +
    + + + + + + + diff --git a/shortcodes/badge/index.print.html b/shortcodes/badge/index.print.html new file mode 100644 index 0000000000..e08dd2b1cb --- /dev/null +++ b/shortcodes/badge/index.print.html @@ -0,0 +1,243 @@ + + + + + + + + + + Badge :: Hugo Relearn Theme + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    +
    +
    +

    Badge

    + +

    The badge shortcode displays little markers in your text with adjustable color, title and icon.

    +

    Important +Version6.6.6 +Captain + InfoAwesome

    +

    Usage

    +

    While the examples are using shortcodes with named parameter you are free to also call this shortcode from your own partials.

    + +
    +
    + + +
    +
    +
    +
    {{% badge %}}Important{{% /badge %}}
    +{{% badge style="primary" title="Version" %}}6.6.6{{% /badge %}}
    +{{% badge style="red" icon="skull-crossbones" %}}Captain{{% /badge %}}
    +{{% badge style="info" %}}Awesome{{% /badge %}}
    +
    +
    +
    +
    {{ partial "shortcodes/badge.html" (dict
    +    "context" .
    +    "content" "Important"
    +)}}
    +{{ partial "shortcodes/badge.html" (dict
    +  "context" .
    +  "style" "primary"
    +  "title" "Version"
    +  "content" "6.6.6"
    +)}}
    +{{ partial "shortcodes/badge.html" (dict
    +  "context" .
    +  "style" "red"
    +  "icon" "skull-crossbones"
    +  "content" "Captain"
    +)}}
    +{{ partial "shortcodes/badge.html" (dict
    +  "context" .
    +  "style" "info"
    +  "content" "Awesome"
    +)}}
    +
    +
    +
    +
    +

    Once the button is clicked, it opens another browser tab for the given URL.

    +

    Parameter

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameDefaultNotes
    styletransparentThe color scheme used to paint the badge.

    - by severity: info, note, tip, warning
    - by brand color: primary, secondary
    - by color: blue, green, grey, orange, red
    - by special color: default, transparent
    iconsee notesFont Awesome icon name set to the left of the title. Depending on the style there may be a default icon. Any given value will overwrite the default.

    - for severity styles: a nice matching icon for the severity
    - for all other colors: <empty>

    If you want no icon for a severity style, you have to set this parameter to " " (a non empty string filled with spaces)
    titlesee notesArbitrary text for the badge title. Depending on the style there may be a default title. Any given value will overwrite the default.

    - for severity styles: the matching title for the severity
    - for all other colors: <empty>

    If you want no title for a severity style, you have to set this parameter to " " (a non empty string filled with spaces)
    <content>see notesArbitrary text for the badge
    +

    Examples

    +

    Style

    +

    By Severity

    +
    {{% badge style="info" %}}New{{% /badge %}}
    +{{% badge style="note" %}}Change{{% /badge %}}
    +{{% badge style="tip" %}}Optional{{% /badge %}}
    +{{% badge style="warning" %}}Breaking{{% /badge %}}
    +

    InfoNew + NoteChange + TipOptional + WarningBreaking

    +

    By Brand Colors

    +
    {{% badge style="primary" icon="bullhorn" title="Announcement" %}}Mandatory{{% /badge %}}
    +{{% badge style="secondary" icon="bullhorn" title="Announcement" %}}Optional{{% /badge %}}
    +

    AnnouncementMandatory + AnnouncementOptional

    +

    By Color

    +
    {{% badge style="blue" icon="palette" title="Color" %}}Blue{{% /badge %}}
    +{{% badge style="green" icon="palette" title="Color" %}}Green{{% /badge %}}
    +{{% badge style="grey" icon="palette" title="Color" %}}Grey{{% /badge %}}
    +{{% badge style="orange" icon="palette" title="Color" %}}Orange{{% /badge %}}
    +{{% badge style="red" icon="palette" title="Color" %}}Red{{% /badge %}}
    +

    ColorBlue + ColorGreen + ColorGrey + ColorOrange + ColorRed

    +

    By Special Color

    +
    {{% badge style="default" icon="palette" title="Color" %}}Default{{% /badge %}}
    +{{% badge style="transparent" icon="palette" title="Color" %}}Transparent{{% /badge %}}
    +

    ColorDefault + ColorTransparent

    +

    Variants

    +

    Without Icon and Title Text

    +
    {{% badge %}}6.6.6{{% /badge %}}
    +{{% badge style="info" icon=" " title=" " %}}Awesome{{% /badge %}}
    +{{% badge style="red" %}}Captain{{% /badge %}}
    +

    6.6.6 +Awesome +Captain

    +

    Without Icon

    +
    {{% badge title="Version" %}}6.6.6{{% /badge %}}
    +{{% badge style="info" icon=" " %}}Awesome{{% /badge %}}
    +{{% badge style="red" title="Rank" %}}Captain{{% /badge %}}
    +

    Version6.6.6 +InfoAwesome +RankCaptain

    +

    Without Title Text

    +
    {{% badge icon="star" %}}6.6.6{{% /badge %}}
    +{{% badge style="info" title=" " %}}Awesome{{% /badge %}}
    +{{% badge style="red" icon="skull-crossbones" %}}Captain{{% /badge %}}
    +

    6.6.6 +Awesome +Captain

    +

    All Set

    +
    {{% badge icon="star" title="Version" %}}6.6.6{{% /badge %}}
    +{{% badge style="info" %}}Awesome{{% /badge %}}
    +{{% badge style="red" icon="skull-crossbones" title="Rank" %}}Captain{{% /badge %}}
    +

    Version6.6.6 + InfoAwesome + RankCaptain

    +

    Override for Severity

    +
    {{% badge style="info" icon="rocket" title="Feature" %}}Awesome{{% /badge %}}
    +
    FeatureAwesome +

    Other

    +

    Inside of Text

    +
    Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus. {{% badge style="blue" icon="rocket" %}}Awesome{{% /badge %}} Et legere ocurreret pri, animal tacimates complectitur ad cum. Cu eum inermis inimicus efficiendi. Labore officiis his ex, soluta officiis concludaturque ei qui, vide sensibus vim ad.
    +

    Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus. Awesome Et legere ocurreret pri, animal tacimates complectitur ad cum. Cu eum inermis inimicus efficiendi. Labore officiis his ex, soluta officiis concludaturque ei qui, vide sensibus vim ad.

    + +
    +
    +
    +
    +
    +
    + + + + + + diff --git a/shortcodes/badge/index.xml b/shortcodes/badge/index.xml new file mode 100644 index 0000000000..810d67a879 --- /dev/null +++ b/shortcodes/badge/index.xml @@ -0,0 +1,10 @@ + + + + Badge on Hugo Relearn Theme + https://McShelby.github.io/hugo-theme-relearn/shortcodes/badge/index.html + Recent content in Badge on Hugo Relearn Theme + Hugo -- gohugo.io + en + + \ No newline at end of file diff --git a/shortcodes/button/index.html b/shortcodes/button/index.html index 70ac3d34ab..56bd117a7b 100644 --- a/shortcodes/button/index.html +++ b/shortcodes/button/index.html @@ -10,21 +10,21 @@ Button :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -54,7 +54,7 @@
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/button/index.print.html b/shortcodes/button/index.print.html index 9c8833adb1..08f5acef19 100644 --- a/shortcodes/button/index.print.html +++ b/shortcodes/button/index.print.html @@ -10,22 +10,22 @@ Button :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -372,9 +372,9 @@
    - - - - + + + + diff --git a/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/index.html b/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/index.html index c35e1e74c8..b577b71aea 100644 --- a/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/index.html +++ b/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/index.html @@ -9,21 +9,21 @@ page 1-1-1-1-1-1 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -170,12 +170,12 @@ - - - - - - + + + + + +
      @@ -198,6 +198,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/index.print.html b/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/index.print.html index f6e52f6d24..89ae2b5c77 100644 --- a/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/index.print.html +++ b/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/index.print.html @@ -9,22 +9,22 @@ page 1-1-1-1-1-1 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -83,9 +83,9 @@
    - - - - + + + + diff --git a/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/index.html b/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/index.html index 83801e9fe3..4e8b45e136 100644 --- a/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/index.html +++ b/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/index.html @@ -9,21 +9,21 @@ page 1-1-1-1-1 (hidden) :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -186,12 +186,12 @@ - - - - - - + + + + + +
      @@ -214,6 +214,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/index.print.html b/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/index.print.html index 2526740478..fe044403fb 100644 --- a/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/index.print.html +++ b/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/index.print.html @@ -9,22 +9,22 @@ page 1-1-1-1-1 (hidden) :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -101,9 +101,9 @@
    - - - - + + + + diff --git a/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/index.html b/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/index.html index 1873be699a..52bf4c54ed 100644 --- a/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/index.html +++ b/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/index.html @@ -9,21 +9,21 @@ page 1-1-1-1 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -186,12 +186,12 @@ - - - - - - + + + + + +
      @@ -214,6 +214,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/index.print.html b/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/index.print.html index e125e71fba..70b041b03b 100644 --- a/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/index.print.html +++ b/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/index.print.html @@ -9,22 +9,22 @@ page 1-1-1-1 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -92,9 +92,9 @@
    - - - - + + + + diff --git a/shortcodes/children/children-1/children-1-1/children-1-1-1/index.html b/shortcodes/children/children-1/children-1-1/children-1-1-1/index.html index 05d6952388..2f09039cf6 100644 --- a/shortcodes/children/children-1/children-1-1/children-1-1-1/index.html +++ b/shortcodes/children/children-1/children-1-1/children-1-1-1/index.html @@ -9,21 +9,21 @@ page 1-1-1 (hidden) :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -186,12 +186,12 @@ - - - - - - + + + + + +
      @@ -214,6 +214,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/children/children-1/children-1-1/children-1-1-1/index.print.html b/shortcodes/children/children-1/children-1-1/children-1-1-1/index.print.html index e987e9942e..3f442d23a6 100644 --- a/shortcodes/children/children-1/children-1-1/children-1-1-1/index.print.html +++ b/shortcodes/children/children-1/children-1-1/children-1-1-1/index.print.html @@ -9,22 +9,22 @@ page 1-1-1 (hidden) :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -110,9 +110,9 @@
    - - - - + + + + diff --git a/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/index.html b/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/index.html index 41ae99c011..44773f4bcf 100644 --- a/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/index.html +++ b/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/index.html @@ -10,21 +10,21 @@ page 1-1-2-1 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -171,12 +171,12 @@ - - - - - - + + + + + +
      @@ -199,6 +199,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/index.print.html b/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/index.print.html index 2ea02dd471..92b95bc7d4 100644 --- a/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/index.print.html +++ b/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/index.print.html @@ -10,22 +10,22 @@ page 1-1-2-1 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -84,9 +84,9 @@
    - - - - + + + + diff --git a/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/index.html b/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/index.html index a440b4c00c..974d4144e4 100644 --- a/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/index.html +++ b/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/index.html @@ -10,21 +10,21 @@ page 1-1-2-2 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -171,12 +171,12 @@ - - - - - - + + + + + +
      @@ -199,6 +199,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/index.print.html b/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/index.print.html index f6a3836bcb..fad73a9e8c 100644 --- a/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/index.print.html +++ b/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/index.print.html @@ -10,22 +10,22 @@ page 1-1-2-2 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -84,9 +84,9 @@
    - - - - + + + + diff --git a/shortcodes/children/children-1/children-1-1/children-1-1-2/index.html b/shortcodes/children/children-1/children-1-1/children-1-1-2/index.html index cb616388f4..b36a1dbc37 100644 --- a/shortcodes/children/children-1/children-1-1/children-1-1-2/index.html +++ b/shortcodes/children/children-1/children-1-1/children-1-1-2/index.html @@ -10,21 +10,21 @@ page 1-1-2 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -188,12 +188,12 @@ - - - - - - + + + + + +
      @@ -216,6 +216,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/children/children-1/children-1-1/children-1-1-2/index.print.html b/shortcodes/children/children-1/children-1-1/children-1-1-2/index.print.html index 2cd5208197..9b0ecce7f1 100644 --- a/shortcodes/children/children-1/children-1-1/children-1-1-2/index.print.html +++ b/shortcodes/children/children-1/children-1-1/children-1-1-2/index.print.html @@ -10,22 +10,22 @@ page 1-1-2 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -112,9 +112,9 @@
    - - - - + + + + diff --git a/shortcodes/children/children-1/children-1-1/children-1-1-3/index.html b/shortcodes/children/children-1/children-1-1/children-1-1-3/index.html index d816a20c4b..2b2fa545ea 100644 --- a/shortcodes/children/children-1/children-1-1/children-1-1-3/index.html +++ b/shortcodes/children/children-1/children-1-1/children-1-1-3/index.html @@ -10,21 +10,21 @@ page 1-1-3 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -171,12 +171,12 @@ - - - - - - + + + + + +
      @@ -199,6 +199,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/children/children-1/children-1-1/children-1-1-3/index.print.html b/shortcodes/children/children-1/children-1-1/children-1-1-3/index.print.html index becf982e03..12f18dd69d 100644 --- a/shortcodes/children/children-1/children-1-1/children-1-1-3/index.print.html +++ b/shortcodes/children/children-1/children-1-1/children-1-1-3/index.print.html @@ -10,22 +10,22 @@ page 1-1-3 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -84,9 +84,9 @@
    - - - - + + + + diff --git a/shortcodes/children/children-1/children-1-1/index.html b/shortcodes/children/children-1/children-1-1/index.html index b421e01806..5f8dfc46a2 100644 --- a/shortcodes/children/children-1/children-1-1/index.html +++ b/shortcodes/children/children-1/children-1-1/index.html @@ -10,21 +10,21 @@ page 1-1 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -189,12 +189,12 @@ - - - - - - + + + + + +
      @@ -217,6 +217,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/children/children-1/children-1-1/index.print.html b/shortcodes/children/children-1/children-1-1/index.print.html index 2e232b4399..b9f299d956 100644 --- a/shortcodes/children/children-1/children-1-1/index.print.html +++ b/shortcodes/children/children-1/children-1-1/index.print.html @@ -10,22 +10,22 @@ page 1-1 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -141,9 +141,9 @@
    - - - - + + + + diff --git a/shortcodes/children/children-1/index.html b/shortcodes/children/children-1/index.html index 2434411294..cfaa0286af 100644 --- a/shortcodes/children/children-1/index.html +++ b/shortcodes/children/children-1/index.html @@ -10,21 +10,21 @@ page 1 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -186,12 +186,12 @@ - - - - - - + + + + + +
      @@ -214,6 +214,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/children/children-1/index.print.html b/shortcodes/children/children-1/index.print.html index 91c4cd66dc..86110fbcad 100644 --- a/shortcodes/children/children-1/index.print.html +++ b/shortcodes/children/children-1/index.print.html @@ -10,22 +10,22 @@ page 1 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -158,9 +158,9 @@
    - - - - + + + + diff --git a/shortcodes/children/children-2/index.html b/shortcodes/children/children-2/index.html index 8143e92838..d6436fa135 100644 --- a/shortcodes/children/children-2/index.html +++ b/shortcodes/children/children-2/index.html @@ -10,21 +10,21 @@ page 2 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -171,12 +171,12 @@ - - - - - - + + + + + +
      @@ -199,6 +199,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/children/children-2/index.print.html b/shortcodes/children/children-2/index.print.html index c2b1676414..ddb96ab99b 100644 --- a/shortcodes/children/children-2/index.print.html +++ b/shortcodes/children/children-2/index.print.html @@ -10,22 +10,22 @@ page 2 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -84,9 +84,9 @@
    - - - - + + + + diff --git a/shortcodes/children/children-3/index.html b/shortcodes/children/children-3/index.html index 14be9f5fa0..90bbbddc69 100644 --- a/shortcodes/children/children-3/index.html +++ b/shortcodes/children/children-3/index.html @@ -10,21 +10,21 @@ page 3 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -186,12 +186,12 @@ - - - - - - + + + + + +
      @@ -214,6 +214,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/children/children-3/index.print.html b/shortcodes/children/children-3/index.print.html index 2e82140903..2e1cb88747 100644 --- a/shortcodes/children/children-3/index.print.html +++ b/shortcodes/children/children-3/index.print.html @@ -10,22 +10,22 @@ page 3 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -101,9 +101,9 @@
    - - - - + + + + diff --git a/shortcodes/children/children-3/test3/index.html b/shortcodes/children/children-3/test3/index.html index 63bac352db..6eeb12315c 100644 --- a/shortcodes/children/children-3/test3/index.html +++ b/shortcodes/children/children-3/test3/index.html @@ -10,21 +10,21 @@ page 3-1 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -171,12 +171,12 @@ - - - - - - + + + + + +
      @@ -199,6 +199,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/children/children-3/test3/index.print.html b/shortcodes/children/children-3/test3/index.print.html index f4c68ddce9..e36427fd27 100644 --- a/shortcodes/children/children-3/test3/index.print.html +++ b/shortcodes/children/children-3/test3/index.print.html @@ -10,22 +10,22 @@ page 3-1 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -84,9 +84,9 @@
    - - - - + + + + diff --git a/shortcodes/children/children-4/index.html b/shortcodes/children/children-4/index.html index 627dea72a3..19d5649726 100644 --- a/shortcodes/children/children-4/index.html +++ b/shortcodes/children/children-4/index.html @@ -9,21 +9,21 @@ page 4 (hidden) :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -169,12 +169,12 @@ - - - - - - + + + + + +
      @@ -197,6 +197,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/children/children-4/index.print.html b/shortcodes/children/children-4/index.print.html index 7f8a20d9c9..61751f6a05 100644 --- a/shortcodes/children/children-4/index.print.html +++ b/shortcodes/children/children-4/index.print.html @@ -9,22 +9,22 @@ page 4 (hidden) :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -82,9 +82,9 @@
    - - - - + + + + diff --git a/shortcodes/children/index.html b/shortcodes/children/index.html index 5b8130bfc0..1d1f92b92b 100644 --- a/shortcodes/children/index.html +++ b/shortcodes/children/index.html @@ -10,21 +10,21 @@ Children :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -371,12 +371,12 @@ So its content is used as description.

    - - - - - - + + + + + +
      @@ -399,6 +399,7 @@ So its content is used as description.

    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/children/index.print.html b/shortcodes/children/index.print.html index bbd4511f05..3b64a6b4f9 100644 --- a/shortcodes/children/index.print.html +++ b/shortcodes/children/index.print.html @@ -10,22 +10,22 @@ Children :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -394,9 +394,9 @@ So its content is used as description.

    - - - - + + + + diff --git a/shortcodes/children/test/index.html b/shortcodes/children/test/index.html index 9f74abe62b..c0205522b4 100644 --- a/shortcodes/children/test/index.html +++ b/shortcodes/children/test/index.html @@ -11,21 +11,21 @@ page X :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -167,12 +167,12 @@ - - - - - - + + + + + +
      @@ -195,6 +195,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/children/test/index.print.html b/shortcodes/children/test/index.print.html index 9c2b428a3f..5da2863185 100644 --- a/shortcodes/children/test/index.print.html +++ b/shortcodes/children/test/index.print.html @@ -11,22 +11,22 @@ page X :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -80,9 +80,9 @@
    - - - - + + + + diff --git a/shortcodes/expand/index.html b/shortcodes/expand/index.html index 59b7afa354..2d0bc00411 100644 --- a/shortcodes/expand/index.html +++ b/shortcodes/expand/index.html @@ -10,21 +10,21 @@ Expand :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -341,12 +341,12 @@ No need to press you! - - - - - - + + + + + +
      @@ -369,6 +369,7 @@ No need to press you!
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/expand/index.print.html b/shortcodes/expand/index.print.html index 23f49b08e4..9883b91ee1 100644 --- a/shortcodes/expand/index.print.html +++ b/shortcodes/expand/index.print.html @@ -10,22 +10,22 @@ Expand :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -233,9 +233,9 @@ No need to press you!
    - - - - + + + + diff --git a/shortcodes/include/index.html b/shortcodes/include/index.html index ffda650716..f3e73dc6c6 100644 --- a/shortcodes/include/index.html +++ b/shortcodes/include/index.html @@ -10,21 +10,21 @@ Include :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -267,12 +267,12 @@ - - - - - - + + + + + +
      @@ -295,6 +295,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/include/index.print.html b/shortcodes/include/index.print.html index f414ec895f..77a34aefdb 100644 --- a/shortcodes/include/index.print.html +++ b/shortcodes/include/index.print.html @@ -10,22 +10,22 @@ Include :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -161,9 +161,9 @@
    - - - - + + + + diff --git a/shortcodes/include_me/index.html b/shortcodes/include_me/index.html index 980ac5d565..fa20c462fe 100644 --- a/shortcodes/include_me/index.html +++ b/shortcodes/include_me/index.html @@ -9,21 +9,21 @@ Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -175,12 +175,12 @@ - - - - - - + + + + + +
    - - - - + + + + diff --git a/shortcodes/include_me/index.print.html b/shortcodes/include_me/index.print.html index 8514fdd063..70c0bb9a24 100644 --- a/shortcodes/include_me/index.print.html +++ b/shortcodes/include_me/index.print.html @@ -9,22 +9,22 @@ Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -88,9 +88,9 @@
    - - - - + + + + diff --git a/shortcodes/index.html b/shortcodes/index.html index 85489a404a..e74b2607cf 100644 --- a/shortcodes/index.html +++ b/shortcodes/index.html @@ -10,21 +10,21 @@ Shortcodes :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -93,6 +93,7 @@

    Attachments

    List of files attached to a page

    +

    Badge

    Marker badges to display in your text

    Button

    Clickable buttons

    Children

    List the child pages of a page

    Expand

    Expandable/collapsible sections of text

    @@ -183,12 +184,12 @@ - - - - - - + + + + + +
      @@ -211,6 +212,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/index.print.html b/shortcodes/index.print.html index 6d9a9cc1b8..c94b1cf8ff 100644 --- a/shortcodes/index.print.html +++ b/shortcodes/index.print.html @@ -10,22 +10,22 @@ Shortcodes :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -78,6 +78,7 @@

    Attachments

    List of files attached to a page

    +

    Badge

    Marker badges to display in your text

    Button

    Clickable buttons

    Children

    List the child pages of a page

    Expand

    Expandable/collapsible sections of text

    @@ -262,6 +263,172 @@
    +
    +

    Badge

    + +

    The badge shortcode displays little markers in your text with adjustable color, title and icon.

    +

    Important +Version6.6.6 +Captain + InfoAwesome

    +

    Usage

    +

    While the examples are using shortcodes with named parameter you are free to also call this shortcode from your own partials.

    + +
    +
    + + +
    +
    +
    +
    {{% badge %}}Important{{% /badge %}}
    +{{% badge style="primary" title="Version" %}}6.6.6{{% /badge %}}
    +{{% badge style="red" icon="skull-crossbones" %}}Captain{{% /badge %}}
    +{{% badge style="info" %}}Awesome{{% /badge %}}
    +
    +
    +
    +
    {{ partial "shortcodes/badge.html" (dict
    +    "context" .
    +    "content" "Important"
    +)}}
    +{{ partial "shortcodes/badge.html" (dict
    +  "context" .
    +  "style" "primary"
    +  "title" "Version"
    +  "content" "6.6.6"
    +)}}
    +{{ partial "shortcodes/badge.html" (dict
    +  "context" .
    +  "style" "red"
    +  "icon" "skull-crossbones"
    +  "content" "Captain"
    +)}}
    +{{ partial "shortcodes/badge.html" (dict
    +  "context" .
    +  "style" "info"
    +  "content" "Awesome"
    +)}}
    +
    +
    +
    +
    +

    Once the button is clicked, it opens another browser tab for the given URL.

    +

    Parameter

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameDefaultNotes
    styletransparentThe color scheme used to paint the badge.

    - by severity: info, note, tip, warning
    - by brand color: primary, secondary
    - by color: blue, green, grey, orange, red
    - by special color: default, transparent
    iconsee notesFont Awesome icon name set to the left of the title. Depending on the style there may be a default icon. Any given value will overwrite the default.

    - for severity styles: a nice matching icon for the severity
    - for all other colors: <empty>

    If you want no icon for a severity style, you have to set this parameter to " " (a non empty string filled with spaces)
    titlesee notesArbitrary text for the badge title. Depending on the style there may be a default title. Any given value will overwrite the default.

    - for severity styles: the matching title for the severity
    - for all other colors: <empty>

    If you want no title for a severity style, you have to set this parameter to " " (a non empty string filled with spaces)
    <content>see notesArbitrary text for the badge
    +

    Examples

    +

    Style

    +

    By Severity

    +
    {{% badge style="info" %}}New{{% /badge %}}
    +{{% badge style="note" %}}Change{{% /badge %}}
    +{{% badge style="tip" %}}Optional{{% /badge %}}
    +{{% badge style="warning" %}}Breaking{{% /badge %}}
    +

    InfoNew + NoteChange + TipOptional + WarningBreaking

    +

    By Brand Colors

    +
    {{% badge style="primary" icon="bullhorn" title="Announcement" %}}Mandatory{{% /badge %}}
    +{{% badge style="secondary" icon="bullhorn" title="Announcement" %}}Optional{{% /badge %}}
    +

    AnnouncementMandatory + AnnouncementOptional

    +

    By Color

    +
    {{% badge style="blue" icon="palette" title="Color" %}}Blue{{% /badge %}}
    +{{% badge style="green" icon="palette" title="Color" %}}Green{{% /badge %}}
    +{{% badge style="grey" icon="palette" title="Color" %}}Grey{{% /badge %}}
    +{{% badge style="orange" icon="palette" title="Color" %}}Orange{{% /badge %}}
    +{{% badge style="red" icon="palette" title="Color" %}}Red{{% /badge %}}
    +

    ColorBlue + ColorGreen + ColorGrey + ColorOrange + ColorRed

    +

    By Special Color

    +
    {{% badge style="default" icon="palette" title="Color" %}}Default{{% /badge %}}
    +{{% badge style="transparent" icon="palette" title="Color" %}}Transparent{{% /badge %}}
    +

    ColorDefault + ColorTransparent

    +

    Variants

    +

    Without Icon and Title Text

    +
    {{% badge %}}6.6.6{{% /badge %}}
    +{{% badge style="info" icon=" " title=" " %}}Awesome{{% /badge %}}
    +{{% badge style="red" %}}Captain{{% /badge %}}
    +

    6.6.6 +Awesome +Captain

    +

    Without Icon

    +
    {{% badge title="Version" %}}6.6.6{{% /badge %}}
    +{{% badge style="info" icon=" " %}}Awesome{{% /badge %}}
    +{{% badge style="red" title="Rank" %}}Captain{{% /badge %}}
    +

    Version6.6.6 +InfoAwesome +RankCaptain

    +

    Without Title Text

    +
    {{% badge icon="star" %}}6.6.6{{% /badge %}}
    +{{% badge style="info" title=" " %}}Awesome{{% /badge %}}
    +{{% badge style="red" icon="skull-crossbones" %}}Captain{{% /badge %}}
    +

    6.6.6 +Awesome +Captain

    +

    All Set

    +
    {{% badge icon="star" title="Version" %}}6.6.6{{% /badge %}}
    +{{% badge style="info" %}}Awesome{{% /badge %}}
    +{{% badge style="red" icon="skull-crossbones" title="Rank" %}}Captain{{% /badge %}}
    +

    Version6.6.6 + InfoAwesome + RankCaptain

    +

    Override for Severity

    +
    {{% badge style="info" icon="rocket" title="Feature" %}}Awesome{{% /badge %}}
    +
    FeatureAwesome +

    Other

    +

    Inside of Text

    +
    Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus. {{% badge style="blue" icon="rocket" %}}Awesome{{% /badge %}} Et legere ocurreret pri, animal tacimates complectitur ad cum. Cu eum inermis inimicus efficiendi. Labore officiis his ex, soluta officiis concludaturque ei qui, vide sensibus vim ad.
    +

    Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus. Awesome Et legere ocurreret pri, animal tacimates complectitur ad cum. Cu eum inermis inimicus efficiendi. Labore officiis his ex, soluta officiis concludaturque ei qui, vide sensibus vim ad.

    + +
    +
    +
    +

    Button

    @@ -1156,8 +1323,8 @@ $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \
    -
    Note
    -
    +
    Note
    +

    This only works in modern browsers.

    @@ -1166,8 +1333,8 @@ $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \

    You are free to also call this shortcode from your own partials.

    -
    Note
    -
    +
    Note
    +

    To use codefence syntax you have to turn off guessSyntax for the markup.highlight setting (see the configuration section).

    @@ -1244,8 +1411,8 @@ $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \

    See MathJax documentation for all allowed settings.

    -
    Note
    -
    +
    Note
    +

    To use codefence syntax you have to turn off guessSyntax for the markup.highlight setting.

    @@ -1310,15 +1477,15 @@ graph LR;
    -
    Note
    -
    +
    Note
    +

    This only works in modern browsers.

    -
    Warning
    -
    +
    Warning
    +

    Due to limitations with Mermaid, it is currently not possible to use Mermaid code fences in an initially collapsed expand shortcode. This is a know issue and can’t be fixed by this theme.

    @@ -1327,8 +1494,8 @@ graph LR;

    You are free to also call this shortcode from your own partials.

    -
    Note
    -
    +
    Note
    +

    To use codefence syntax you have to turn off guessSyntax for the markup.highlight setting (see the configuration section).

    @@ -1411,8 +1578,8 @@ graph LR;

    The theme setting can also be set by your used color variant. This will be the sitewide default and can - again - be overridden by your settings in config.toml, frontmatter or diagram directives.

    -
    Note
    -
    +
    Note
    +

    To use codefence syntax you have to turn off guessSyntax for the markup.highlight setting.

    @@ -1795,8 +1962,8 @@ C4Context

    Mindmap

    -
    Note
    -
    +
    Note
    +

    As of Mermaid version 9.2.2 this diagram type is not included in the official distribution and will not be useable in this theme.

    @@ -1850,8 +2017,8 @@ mindmap

    The notice shortcode shows various types of disclaimers with adjustable color, title and icon to help you structure your page.

    -
    There may be pirates
    -
    +
    There may be pirates
    +

    It is all about the boxes.

    @@ -1963,8 +2130,8 @@ mindmap {{% /notice %}}
    -
    Info
    -
    +
    Info
    +

    An information disclaimer

    You can add standard markdown syntax:

      @@ -1986,8 +2153,8 @@ mindmap {{% /notice %}}
    -
    Note
    -
    +
    Note
    +

    A notice disclaimer

    @@ -1996,8 +2163,8 @@ mindmap A **tip** disclaimer
    -
    Tip
    -
    +
    Tip
    +

    A tip disclaimer

    @@ -2007,8 +2174,8 @@ mindmap {{% /notice %}}
    -
    Warning
    -
    +
    Warning
    +

    A warning disclaimer

    @@ -2018,8 +2185,8 @@ mindmap {{% /notice %}}
    -
    Here are dragons
    -
    +
    Here are dragons
    +

    A warning disclaimer

    @@ -2029,8 +2196,8 @@ mindmap {{% /notice %}}
    -
    -
    +
    +

    A warning disclaimer

    @@ -2041,8 +2208,8 @@ mindmap {{% /notice %}}
    -
    Primary
    -
    +
    Primary
    +

    A primary disclaimer

    @@ -2052,8 +2219,8 @@ mindmap {{% /notice %}}
    -
    -
    +
    +

    A secondary disclaimer

    @@ -2064,8 +2231,8 @@ mindmap {{% /notice %}}
    -
    -
    +
    +

    A blue disclaimer

    @@ -2075,8 +2242,8 @@ mindmap {{% /notice %}}
    -
    Green
    -
    +
    Green
    +

    A green disclaimer

    @@ -2086,8 +2253,8 @@ mindmap {{% /notice %}}
    -
    -
    +
    +

    A grey disclaimer

    @@ -2097,8 +2264,8 @@ mindmap {{% /notice %}}
    -
    Orange
    -
    +
    Orange
    +

    A orange disclaimer

    @@ -2108,8 +2275,8 @@ mindmap {{% /notice %}}
    -
    -
    +
    +

    A red disclaimer

    @@ -2120,8 +2287,8 @@ mindmap {{% /notice %}}
    -
    Pay Attention to this Note!
    -
    +
    Pay Attention to this Note!
    +

    Some serious information.

    @@ -2131,8 +2298,8 @@ mindmap {{% /notice %}}
    -
    Pay Attention to this Note!
    -
    +
    Pay Attention to this Note!
    +

    Some serious information.

    @@ -2221,8 +2388,8 @@ mindmap

    This shortcode uses the RapiDoc library to display your Swagger / OpenAPI Specifications.

    -
    Note
    -
    +
    Note
    +

    This only works in modern browsers.

    @@ -2277,8 +2444,8 @@ mindmap
    -
    Note
    -
    +
    Note
    +

    If you want to print out (or generate a PDF) from your Swagger documentation, don’t initiate printing directly from the page because the elements are optimized for interactive usage in a browser.

    Instead, open the print preview in your browser and initiate printing from that page. This page is optimized for reading and expands most of the available sections.

    @@ -2421,8 +2588,8 @@ mindmap
    -
    Note
    -
    +
    Note
    +

    When using tab views with different content sets, make sure to use a common groupid for equal sets of tabs but distinct groupid for different sets.

    The tab selection is restored automatically based on the groupid and if it cannot find a tab item because it came from the 'default' group on a different page then the first tab is selected instead.

    @@ -2661,9 +2828,9 @@ mindmap
    - - - + + + - - - + + + - + - + diff --git a/shortcodes/index.xml b/shortcodes/index.xml index ab6e0e895d..0c61eaa08a 100644 --- a/shortcodes/index.xml +++ b/shortcodes/index.xml @@ -33,6 +33,16 @@ shortcode partial {{&lt; swagger src=&#34;https://petstore3.swagger.io/a The attachments shortcode displays a list of files attached to a page with adjustable color, title and icon. Attachments adivorciarsetoca00cape.pdf (361 KB) BachGavotteShort.mp3 (357 KB) Carroll_AliceAuPaysDesMerveilles.pdf (175 KB) hugo.png (17 KB) hugo.txt (20 B) movieselectricsheep-flock-244-32500-2.mp4 (340 KB) Usage While the examples are using shortcodes with named parameter you are free to also call this shortcode from your own partials. shortcode partial {{% attachments sort=&#34;asc&#34; /%}} {{ partial &#34;shortcodes/attachments.html&#34; (dict &#34;context&#34; . + + + Badge + https://McShelby.github.io/hugo-theme-relearn/shortcodes/badge/index.html + Mon, 01 Jan 0001 00:00:00 +0000 + https://McShelby.github.io/hugo-theme-relearn/shortcodes/badge/index.html + The badge shortcode displays little markers in your text with adjustable color, title and icon. +Important Version6.6.6 Captain InfoAwesome +Usage While the examples are using shortcodes with named parameter you are free to also call this shortcode from your own partials. +shortcode partial {{% badge %}}Important{{% /badge %}} {{% badge style=&#34;primary&#34; title=&#34;Version&#34; %}}6.6.6{{% /badge %}} {{% badge style=&#34;red&#34; icon=&#34;skull-crossbones&#34; %}}Captain{{% /badge %}} {{% badge style=&#34;info&#34; %}}Awesome{{% /badge %}} {{ partial &#34;shortcodes/badge. Button diff --git a/shortcodes/math/index.html b/shortcodes/math/index.html index 1fbed9c9eb..80625814cf 100644 --- a/shortcodes/math/index.html +++ b/shortcodes/math/index.html @@ -10,21 +10,21 @@ Math :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -120,8 +120,8 @@ $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \
    -
    Note
    -
    +
    Note
    +

    This only works in modern browsers.

    @@ -130,8 +130,8 @@ $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \

    You are free to also call this shortcode from your own partials.

    -
    Note
    -
    +
    Note
    +

    To use codefence syntax you have to turn off guessSyntax for the markup.highlight setting (see the configuration section).

    @@ -208,8 +208,8 @@ $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \

    See MathJax documentation for all allowed settings.

    -
    Note
    -
    +
    Note
    +

    To use codefence syntax you have to turn off guessSyntax for the markup.highlight setting.

    @@ -336,12 +336,12 @@ $$\ce{Hg^2+ ->[I-] HgI2 ->[I-] [Hg^{II}I4]^2-}$$ - - - - - - + + + + + +
      @@ -364,6 +364,7 @@ $$\ce{Hg^2+ ->[I-] HgI2 ->[I-] [Hg^{II}I4]^2-}$$
    • Tags
  • 3. Shortcodes
  • - - - + + + - - + + diff --git a/shortcodes/math/index.print.html b/shortcodes/math/index.print.html index ba775a899d..7243a1c0c3 100644 --- a/shortcodes/math/index.print.html +++ b/shortcodes/math/index.print.html @@ -10,22 +10,22 @@ Math :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,8 +77,8 @@ $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \
    -
    Note
    -
    +
    Note
    +

    This only works in modern browsers.

    @@ -87,8 +87,8 @@ $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \

    You are free to also call this shortcode from your own partials.

    -
    Note
    -
    +
    Note
    +

    To use codefence syntax you have to turn off guessSyntax for the markup.highlight setting (see the configuration section).

    @@ -165,8 +165,8 @@ $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \

    See MathJax documentation for all allowed settings.

    -
    Note
    -
    +
    Note
    +

    To use codefence syntax you have to turn off guessSyntax for the markup.highlight setting.

    @@ -221,9 +221,9 @@ $$\ce{Hg^2+ ->[I-] HgI2 ->[I-] [Hg^{II}I4]^2-}$$
    - - - + + + - - + + diff --git a/shortcodes/mermaid/index.html b/shortcodes/mermaid/index.html index 2abb2c8e9e..e9ebb5da12 100644 --- a/shortcodes/mermaid/index.html +++ b/shortcodes/mermaid/index.html @@ -10,21 +10,21 @@ Mermaid :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -130,15 +130,15 @@ graph LR;
    -
    Note
    -
    +
    Note
    +

    This only works in modern browsers.

    -
    Warning
    -
    +
    Warning
    +

    Due to limitations with Mermaid, it is currently not possible to use Mermaid code fences in an initially collapsed expand shortcode. This is a know issue and can’t be fixed by this theme.

    @@ -147,8 +147,8 @@ graph LR;

    You are free to also call this shortcode from your own partials.

    -
    Note
    -
    +
    Note
    +

    To use codefence syntax you have to turn off guessSyntax for the markup.highlight setting (see the configuration section).

    @@ -231,8 +231,8 @@ graph LR;

    The theme setting can also be set by your used color variant. This will be the sitewide default and can - again - be overridden by your settings in config.toml, frontmatter or diagram directives.

    -
    Note
    -
    +
    Note
    +

    To use codefence syntax you have to turn off guessSyntax for the markup.highlight setting.

    @@ -615,8 +615,8 @@ C4Context

    Mindmap

    -
    Note
    -
    +
    Note
    +

    As of Mermaid version 9.2.2 this diagram type is not included in the official distribution and will not be useable in this theme.

    @@ -738,12 +738,12 @@ mindmap - - - - - - + + + + + +
      @@ -766,6 +766,7 @@ mindmap
    • Tags
  • 3. Shortcodes
  • - - - - - + + + + + - + diff --git a/shortcodes/mermaid/index.print.html b/shortcodes/mermaid/index.print.html index 045886eb61..0c7dae1a28 100644 --- a/shortcodes/mermaid/index.print.html +++ b/shortcodes/mermaid/index.print.html @@ -10,22 +10,22 @@ Mermaid :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -79,15 +79,15 @@ graph LR;
    -
    Note
    -
    +
    Note
    +

    This only works in modern browsers.

    -
    Warning
    -
    +
    Warning
    +

    Due to limitations with Mermaid, it is currently not possible to use Mermaid code fences in an initially collapsed expand shortcode. This is a know issue and can’t be fixed by this theme.

    @@ -96,8 +96,8 @@ graph LR;

    You are free to also call this shortcode from your own partials.

    -
    Note
    -
    +
    Note
    +

    To use codefence syntax you have to turn off guessSyntax for the markup.highlight setting (see the configuration section).

    @@ -180,8 +180,8 @@ graph LR;

    The theme setting can also be set by your used color variant. This will be the sitewide default and can - again - be overridden by your settings in config.toml, frontmatter or diagram directives.

    -
    Note
    -
    +
    Note
    +

    To use codefence syntax you have to turn off guessSyntax for the markup.highlight setting.

    @@ -564,8 +564,8 @@ C4Context

    Mindmap

    -
    Note
    -
    +
    Note
    +

    As of Mermaid version 9.2.2 this diagram type is not included in the official distribution and will not be useable in this theme.

    @@ -615,14 +615,14 @@ mindmap
    - - - - - + + + + + - + diff --git a/shortcodes/notice/index.html b/shortcodes/notice/index.html index 195d437406..e429502dd9 100644 --- a/shortcodes/notice/index.html +++ b/shortcodes/notice/index.html @@ -10,21 +10,21 @@ Notice :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -110,8 +110,8 @@

    The notice shortcode shows various types of disclaimers with adjustable color, title and icon to help you structure your page.

    -
    There may be pirates
    -
    +
    There may be pirates
    +

    It is all about the boxes.

    @@ -223,8 +223,8 @@ {{% /notice %}}
    -
    Info
    -
    +
    Info
    +

    An information disclaimer

    You can add standard markdown syntax:

      @@ -246,8 +246,8 @@ {{% /notice %}}
    -
    Note
    -
    +
    Note
    +

    A notice disclaimer

    @@ -256,8 +256,8 @@ A **tip** disclaimer
    -
    Tip
    -
    +
    Tip
    +

    A tip disclaimer

    @@ -267,8 +267,8 @@ {{% /notice %}}
    -
    Warning
    -
    +
    Warning
    +

    A warning disclaimer

    @@ -278,8 +278,8 @@ {{% /notice %}}
    -
    Here are dragons
    -
    +
    Here are dragons
    +

    A warning disclaimer

    @@ -289,8 +289,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A warning disclaimer

    @@ -301,8 +301,8 @@ {{% /notice %}}
    -
    Primary
    -
    +
    Primary
    +

    A primary disclaimer

    @@ -312,8 +312,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A secondary disclaimer

    @@ -324,8 +324,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A blue disclaimer

    @@ -335,8 +335,8 @@ {{% /notice %}}
    -
    Green
    -
    +
    Green
    +

    A green disclaimer

    @@ -346,8 +346,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A grey disclaimer

    @@ -357,8 +357,8 @@ {{% /notice %}}
    -
    Orange
    -
    +
    Orange
    +

    A orange disclaimer

    @@ -368,8 +368,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A red disclaimer

    @@ -380,8 +380,8 @@ {{% /notice %}}
    -
    Pay Attention to this Note!
    -
    +
    Pay Attention to this Note!
    +

    Some serious information.

    @@ -391,8 +391,8 @@ {{% /notice %}}
    -
    Pay Attention to this Note!
    -
    +
    Pay Attention to this Note!
    +

    Some serious information.

    @@ -475,12 +475,12 @@ - - - - - - + + + + + +
      @@ -503,6 +503,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/notice/index.print.html b/shortcodes/notice/index.print.html index 4b43d22e07..a8e4f6191e 100644 --- a/shortcodes/notice/index.print.html +++ b/shortcodes/notice/index.print.html @@ -10,22 +10,22 @@ Notice :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -73,8 +73,8 @@

    The notice shortcode shows various types of disclaimers with adjustable color, title and icon to help you structure your page.

    -
    There may be pirates
    -
    +
    There may be pirates
    +

    It is all about the boxes.

    @@ -186,8 +186,8 @@ {{% /notice %}}
    -
    Info
    -
    +
    Info
    +

    An information disclaimer

    You can add standard markdown syntax:

      @@ -209,8 +209,8 @@ {{% /notice %}}
    -
    Note
    -
    +
    Note
    +

    A notice disclaimer

    @@ -219,8 +219,8 @@ A **tip** disclaimer
    -
    Tip
    -
    +
    Tip
    +

    A tip disclaimer

    @@ -230,8 +230,8 @@ {{% /notice %}}
    -
    Warning
    -
    +
    Warning
    +

    A warning disclaimer

    @@ -241,8 +241,8 @@ {{% /notice %}}
    -
    Here are dragons
    -
    +
    Here are dragons
    +

    A warning disclaimer

    @@ -252,8 +252,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A warning disclaimer

    @@ -264,8 +264,8 @@ {{% /notice %}}
    -
    Primary
    -
    +
    Primary
    +

    A primary disclaimer

    @@ -275,8 +275,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A secondary disclaimer

    @@ -287,8 +287,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A blue disclaimer

    @@ -298,8 +298,8 @@ {{% /notice %}}
    -
    Green
    -
    +
    Green
    +

    A green disclaimer

    @@ -309,8 +309,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A grey disclaimer

    @@ -320,8 +320,8 @@ {{% /notice %}}
    -
    Orange
    -
    +
    Orange
    +

    A orange disclaimer

    @@ -331,8 +331,8 @@ {{% /notice %}}
    -
    -
    +
    +

    A red disclaimer

    @@ -343,8 +343,8 @@ {{% /notice %}}
    -
    Pay Attention to this Note!
    -
    +
    Pay Attention to this Note!
    +

    Some serious information.

    @@ -354,8 +354,8 @@ {{% /notice %}}
    -
    Pay Attention to this Note!
    -
    +
    Pay Attention to this Note!
    +

    Some serious information.

    @@ -366,9 +366,9 @@
    - - - - + + + + diff --git a/shortcodes/siteparam/index.html b/shortcodes/siteparam/index.html index 9b13e08d71..683e8a16b9 100644 --- a/shortcodes/siteparam/index.html +++ b/shortcodes/siteparam/index.html @@ -10,21 +10,21 @@ Site param :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -249,12 +249,12 @@ - - - - - - + + + + + +
      @@ -277,6 +277,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/siteparam/index.print.html b/shortcodes/siteparam/index.print.html index eb2775c085..4fdf920688 100644 --- a/shortcodes/siteparam/index.print.html +++ b/shortcodes/siteparam/index.print.html @@ -10,22 +10,22 @@ Site param :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -143,9 +143,9 @@
    - - - - + + + + diff --git a/shortcodes/swagger/index.html b/shortcodes/swagger/index.html index 70b66a32f2..f86572d634 100644 --- a/shortcodes/swagger/index.html +++ b/shortcodes/swagger/index.html @@ -10,21 +10,21 @@ Swagger :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -112,8 +112,8 @@

    This shortcode uses the RapiDoc library to display your Swagger / OpenAPI Specifications.

    -
    Note
    -
    +
    Note
    +

    This only works in modern browsers.

    @@ -168,8 +168,8 @@
    -
    Note
    -
    +
    Note
    +

    If you want to print out (or generate a PDF) from your Swagger documentation, don’t initiate printing directly from the page because the elements are optimized for interactive usage in a browser.

    Instead, open the print preview in your browser and initiate printing from that page. This page is optimized for reading and expands most of the available sections.

    @@ -279,12 +279,12 @@ - - - - - - + + + + + +
      @@ -307,6 +307,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + - + diff --git a/shortcodes/swagger/index.print.html b/shortcodes/swagger/index.print.html index 66ca37688a..5f7477b527 100644 --- a/shortcodes/swagger/index.print.html +++ b/shortcodes/swagger/index.print.html @@ -10,22 +10,22 @@ Swagger :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -73,8 +73,8 @@

    This shortcode uses the RapiDoc library to display your Swagger / OpenAPI Specifications.

    -
    Note
    -
    +
    Note
    +

    This only works in modern browsers.

    @@ -129,8 +129,8 @@
    -
    Note
    -
    +
    Note
    +

    If you want to print out (or generate a PDF) from your Swagger documentation, don’t initiate printing directly from the page because the elements are optimized for interactive usage in a browser.

    Instead, open the print preview in your browser and initiate printing from that page. This page is optimized for reading and expands most of the available sections.

    @@ -168,13 +168,13 @@
    - - - - + + + + - + diff --git a/shortcodes/tabs/index.html b/shortcodes/tabs/index.html index 8516b18b12..6235c35f3a 100644 --- a/shortcodes/tabs/index.html +++ b/shortcodes/tabs/index.html @@ -10,21 +10,21 @@ Tabbed views :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -210,8 +210,8 @@
    -
    Note
    -
    +
    Note
    +

    When using tab views with different content sets, make sure to use a common groupid for equal sets of tabs but distinct groupid for different sets.

    The tab selection is restored automatically based on the groupid and if it cannot find a tab item because it came from the 'default' group on a different page then the first tab is selected instead.

    @@ -521,12 +521,12 @@ - - - - - - + + + + + +
      @@ -549,6 +549,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/shortcodes/tabs/index.print.html b/shortcodes/tabs/index.print.html index 90671c6389..d480b5d1a2 100644 --- a/shortcodes/tabs/index.print.html +++ b/shortcodes/tabs/index.print.html @@ -10,22 +10,22 @@ Tabbed views :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -174,8 +174,8 @@
    -
    Note
    -
    +
    Note
    +

    When using tab views with different content sets, make sure to use a common groupid for equal sets of tabs but distinct groupid for different sets.

    The tab selection is restored automatically based on the groupid and if it cannot find a tab item because it came from the 'default' group on a different page then the first tab is selected instead.

    @@ -413,9 +413,9 @@
    - - - - + + + + diff --git a/tags/children/index.html b/tags/children/index.html index 2706b2e333..14ce60c2d6 100644 --- a/tags/children/index.html +++ b/tags/children/index.html @@ -9,21 +9,21 @@ children :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -167,12 +167,12 @@ - - - - - - + + + + + +
      @@ -195,6 +195,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tags/documentation/index.html b/tags/documentation/index.html index 0306851aed..44ce3b7015 100644 --- a/tags/documentation/index.html +++ b/tags/documentation/index.html @@ -9,21 +9,21 @@ documentation :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -154,12 +154,12 @@ - - - - - - + + + + + +
      @@ -182,6 +182,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tags/hidden/index.html b/tags/hidden/index.html index 5596aa9a28..ad36ac137c 100644 --- a/tags/hidden/index.html +++ b/tags/hidden/index.html @@ -9,21 +9,21 @@ hidden :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -158,12 +158,12 @@ - - - - - - + + + + + +
      @@ -186,6 +186,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tags/index.html b/tags/index.html index 26bb2d7c8d..cfed159dbb 100644 --- a/tags/index.html +++ b/tags/index.html @@ -9,21 +9,21 @@ Tags :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -157,12 +157,12 @@ - - - - - - + + + + + +
      @@ -185,6 +185,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tags/non-hidden/index.html b/tags/non-hidden/index.html index 90dad0f823..1d847ed962 100644 --- a/tags/non-hidden/index.html +++ b/tags/non-hidden/index.html @@ -9,21 +9,21 @@ non-hidden :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -162,12 +162,12 @@ - - - - - - + + + + + +
      @@ -190,6 +190,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tags/tutorial/index.html b/tags/tutorial/index.html index e5c6193856..7aa7374589 100644 --- a/tags/tutorial/index.html +++ b/tags/tutorial/index.html @@ -9,21 +9,21 @@ tutorial :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -154,12 +154,12 @@ - - - - - - + + + + + +
      @@ -182,6 +182,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/1/index.html b/tests/chapters/1/index.html index 2d3a77922f..23f507f606 100644 --- a/tests/chapters/1/index.html +++ b/tests/chapters/1/index.html @@ -9,21 +9,21 @@ 1 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/1/index.print.html b/tests/chapters/1/index.print.html index 153e50469a..efca08c0ea 100644 --- a/tests/chapters/1/index.print.html +++ b/tests/chapters/1/index.print.html @@ -9,22 +9,22 @@ 1 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/10/index.html b/tests/chapters/10/index.html index 2bef76e2de..7616b2998c 100644 --- a/tests/chapters/10/index.html +++ b/tests/chapters/10/index.html @@ -9,21 +9,21 @@ 10 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/10/index.print.html b/tests/chapters/10/index.print.html index 49ba4e5a86..50c791fc95 100644 --- a/tests/chapters/10/index.print.html +++ b/tests/chapters/10/index.print.html @@ -9,22 +9,22 @@ 10 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/11/index.html b/tests/chapters/11/index.html index 7c7a0b3a6f..05a9c06d33 100644 --- a/tests/chapters/11/index.html +++ b/tests/chapters/11/index.html @@ -9,21 +9,21 @@ 11 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/11/index.print.html b/tests/chapters/11/index.print.html index 805d9f9254..911f9c2a1f 100644 --- a/tests/chapters/11/index.print.html +++ b/tests/chapters/11/index.print.html @@ -9,22 +9,22 @@ 11 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/12/index.html b/tests/chapters/12/index.html index 69d2867dca..306ee306a1 100644 --- a/tests/chapters/12/index.html +++ b/tests/chapters/12/index.html @@ -9,21 +9,21 @@ 12 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/12/index.print.html b/tests/chapters/12/index.print.html index 3cf7e03d6b..25fe8d8136 100644 --- a/tests/chapters/12/index.print.html +++ b/tests/chapters/12/index.print.html @@ -9,22 +9,22 @@ 12 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/13/index.html b/tests/chapters/13/index.html index f2bd893d89..3a3cbbd29e 100644 --- a/tests/chapters/13/index.html +++ b/tests/chapters/13/index.html @@ -9,21 +9,21 @@ 13 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/13/index.print.html b/tests/chapters/13/index.print.html index 403ad30b06..86de925efb 100644 --- a/tests/chapters/13/index.print.html +++ b/tests/chapters/13/index.print.html @@ -9,22 +9,22 @@ 13 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/14/index.html b/tests/chapters/14/index.html index 3f315105b6..e1560ed1f4 100644 --- a/tests/chapters/14/index.html +++ b/tests/chapters/14/index.html @@ -9,21 +9,21 @@ 14 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/14/index.print.html b/tests/chapters/14/index.print.html index e8adda59e1..3fe7c95982 100644 --- a/tests/chapters/14/index.print.html +++ b/tests/chapters/14/index.print.html @@ -9,22 +9,22 @@ 14 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/15/index.html b/tests/chapters/15/index.html index 4af3da349b..adc0b2a215 100644 --- a/tests/chapters/15/index.html +++ b/tests/chapters/15/index.html @@ -9,21 +9,21 @@ 15 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/15/index.print.html b/tests/chapters/15/index.print.html index dc4c9973e7..aee9a4e5cd 100644 --- a/tests/chapters/15/index.print.html +++ b/tests/chapters/15/index.print.html @@ -9,22 +9,22 @@ 15 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/16/index.html b/tests/chapters/16/index.html index 3221207deb..d13f564091 100644 --- a/tests/chapters/16/index.html +++ b/tests/chapters/16/index.html @@ -9,21 +9,21 @@ 16 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/16/index.print.html b/tests/chapters/16/index.print.html index 3e1d50cfd5..fcb31c69c7 100644 --- a/tests/chapters/16/index.print.html +++ b/tests/chapters/16/index.print.html @@ -9,22 +9,22 @@ 16 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/17/index.html b/tests/chapters/17/index.html index 6bc0aaa0d0..5b97921940 100644 --- a/tests/chapters/17/index.html +++ b/tests/chapters/17/index.html @@ -9,21 +9,21 @@ 17 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/17/index.print.html b/tests/chapters/17/index.print.html index 94fe4d72dc..2eff14f13e 100644 --- a/tests/chapters/17/index.print.html +++ b/tests/chapters/17/index.print.html @@ -9,22 +9,22 @@ 17 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/18/index.html b/tests/chapters/18/index.html index 33ca773a0d..de729a01be 100644 --- a/tests/chapters/18/index.html +++ b/tests/chapters/18/index.html @@ -9,21 +9,21 @@ 18 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/18/index.print.html b/tests/chapters/18/index.print.html index 674085c005..76219b2afc 100644 --- a/tests/chapters/18/index.print.html +++ b/tests/chapters/18/index.print.html @@ -9,22 +9,22 @@ 18 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/19/index.html b/tests/chapters/19/index.html index 79777a9bea..cc9409bb93 100644 --- a/tests/chapters/19/index.html +++ b/tests/chapters/19/index.html @@ -9,21 +9,21 @@ 19 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/19/index.print.html b/tests/chapters/19/index.print.html index 6ec5ca7187..de17afb140 100644 --- a/tests/chapters/19/index.print.html +++ b/tests/chapters/19/index.print.html @@ -9,22 +9,22 @@ 19 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/2/index.html b/tests/chapters/2/index.html index 10947e7210..457d391a39 100644 --- a/tests/chapters/2/index.html +++ b/tests/chapters/2/index.html @@ -9,21 +9,21 @@ 2 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/2/index.print.html b/tests/chapters/2/index.print.html index 66d6cc42df..53d7b05999 100644 --- a/tests/chapters/2/index.print.html +++ b/tests/chapters/2/index.print.html @@ -9,22 +9,22 @@ 2 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/20/index.html b/tests/chapters/20/index.html index 9ac13a6eca..27a820a327 100644 --- a/tests/chapters/20/index.html +++ b/tests/chapters/20/index.html @@ -9,21 +9,21 @@ 20 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/20/index.print.html b/tests/chapters/20/index.print.html index b348f788bd..ca2541d5cd 100644 --- a/tests/chapters/20/index.print.html +++ b/tests/chapters/20/index.print.html @@ -9,22 +9,22 @@ 20 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/21/index.html b/tests/chapters/21/index.html index 67694b3757..1fffa95a43 100644 --- a/tests/chapters/21/index.html +++ b/tests/chapters/21/index.html @@ -9,21 +9,21 @@ 21 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/21/index.print.html b/tests/chapters/21/index.print.html index 57f8a0a2ec..37bbde77f4 100644 --- a/tests/chapters/21/index.print.html +++ b/tests/chapters/21/index.print.html @@ -9,22 +9,22 @@ 21 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/22/index.html b/tests/chapters/22/index.html index dd3f5b6d08..80ecd4bc1e 100644 --- a/tests/chapters/22/index.html +++ b/tests/chapters/22/index.html @@ -9,21 +9,21 @@ 22 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/22/index.print.html b/tests/chapters/22/index.print.html index 30eaf2c253..5e0c335de6 100644 --- a/tests/chapters/22/index.print.html +++ b/tests/chapters/22/index.print.html @@ -9,22 +9,22 @@ 22 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/23/index.html b/tests/chapters/23/index.html index cb5ae612d5..0214e335cd 100644 --- a/tests/chapters/23/index.html +++ b/tests/chapters/23/index.html @@ -9,21 +9,21 @@ 23 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/23/index.print.html b/tests/chapters/23/index.print.html index 5376f57584..e90c896628 100644 --- a/tests/chapters/23/index.print.html +++ b/tests/chapters/23/index.print.html @@ -9,22 +9,22 @@ 23 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/24/index.html b/tests/chapters/24/index.html index 6bb3da45ee..53a0555568 100644 --- a/tests/chapters/24/index.html +++ b/tests/chapters/24/index.html @@ -9,21 +9,21 @@ 24 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/24/index.print.html b/tests/chapters/24/index.print.html index df3108ca8d..2a4b47bde7 100644 --- a/tests/chapters/24/index.print.html +++ b/tests/chapters/24/index.print.html @@ -9,22 +9,22 @@ 24 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/25/index.html b/tests/chapters/25/index.html index 783726f96e..113175a878 100644 --- a/tests/chapters/25/index.html +++ b/tests/chapters/25/index.html @@ -9,21 +9,21 @@ 25 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/25/index.print.html b/tests/chapters/25/index.print.html index 858f536b57..473c37a550 100644 --- a/tests/chapters/25/index.print.html +++ b/tests/chapters/25/index.print.html @@ -9,22 +9,22 @@ 25 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/26/index.html b/tests/chapters/26/index.html index 40da23c515..c4d6718d77 100644 --- a/tests/chapters/26/index.html +++ b/tests/chapters/26/index.html @@ -9,21 +9,21 @@ 26 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/26/index.print.html b/tests/chapters/26/index.print.html index 7008881c1b..b502de6fdb 100644 --- a/tests/chapters/26/index.print.html +++ b/tests/chapters/26/index.print.html @@ -9,22 +9,22 @@ 26 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/27/index.html b/tests/chapters/27/index.html index e13886e6a8..e57064e616 100644 --- a/tests/chapters/27/index.html +++ b/tests/chapters/27/index.html @@ -9,21 +9,21 @@ 27 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/27/index.print.html b/tests/chapters/27/index.print.html index 785e2561b5..cf06f1413d 100644 --- a/tests/chapters/27/index.print.html +++ b/tests/chapters/27/index.print.html @@ -9,22 +9,22 @@ 27 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/28/index.html b/tests/chapters/28/index.html index fbe88ae8a1..0522928081 100644 --- a/tests/chapters/28/index.html +++ b/tests/chapters/28/index.html @@ -9,21 +9,21 @@ 28 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/28/index.print.html b/tests/chapters/28/index.print.html index 0e6db86f36..5366b8187f 100644 --- a/tests/chapters/28/index.print.html +++ b/tests/chapters/28/index.print.html @@ -9,22 +9,22 @@ 28 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/29/index.html b/tests/chapters/29/index.html index 7308a682ab..c7d3267cd0 100644 --- a/tests/chapters/29/index.html +++ b/tests/chapters/29/index.html @@ -9,21 +9,21 @@ 29 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/29/index.print.html b/tests/chapters/29/index.print.html index d50503761a..c7cacb2bd8 100644 --- a/tests/chapters/29/index.print.html +++ b/tests/chapters/29/index.print.html @@ -9,22 +9,22 @@ 29 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/3/index.html b/tests/chapters/3/index.html index 8e1a9404b2..1b9b3621c8 100644 --- a/tests/chapters/3/index.html +++ b/tests/chapters/3/index.html @@ -9,21 +9,21 @@ 3 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/3/index.print.html b/tests/chapters/3/index.print.html index 71102bbdef..3be26c9371 100644 --- a/tests/chapters/3/index.print.html +++ b/tests/chapters/3/index.print.html @@ -9,22 +9,22 @@ 3 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/30/index.html b/tests/chapters/30/index.html index d5cd9aee8c..7963be1add 100644 --- a/tests/chapters/30/index.html +++ b/tests/chapters/30/index.html @@ -9,21 +9,21 @@ 30 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/30/index.print.html b/tests/chapters/30/index.print.html index 348a41da3d..a0162d3452 100644 --- a/tests/chapters/30/index.print.html +++ b/tests/chapters/30/index.print.html @@ -9,22 +9,22 @@ 30 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/4/index.html b/tests/chapters/4/index.html index e7c88fa159..fb7b05afdd 100644 --- a/tests/chapters/4/index.html +++ b/tests/chapters/4/index.html @@ -9,21 +9,21 @@ 4 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/4/index.print.html b/tests/chapters/4/index.print.html index 292056d432..71a2a72492 100644 --- a/tests/chapters/4/index.print.html +++ b/tests/chapters/4/index.print.html @@ -9,22 +9,22 @@ 4 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/5/index.html b/tests/chapters/5/index.html index 6f1d9d7a69..1d25d85ca6 100644 --- a/tests/chapters/5/index.html +++ b/tests/chapters/5/index.html @@ -9,21 +9,21 @@ 5 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/5/index.print.html b/tests/chapters/5/index.print.html index 0340f2f054..aeefdf2062 100644 --- a/tests/chapters/5/index.print.html +++ b/tests/chapters/5/index.print.html @@ -9,22 +9,22 @@ 5 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/6/index.html b/tests/chapters/6/index.html index 46f7602e2f..5e346dc34e 100644 --- a/tests/chapters/6/index.html +++ b/tests/chapters/6/index.html @@ -9,21 +9,21 @@ 6 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
      @@ -192,6 +192,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/6/index.print.html b/tests/chapters/6/index.print.html index 39f1211cde..798898950c 100644 --- a/tests/chapters/6/index.print.html +++ b/tests/chapters/6/index.print.html @@ -9,22 +9,22 @@ 6 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/7/index.html b/tests/chapters/7/index.html index 9edf9c2cda..7dd30d409d 100644 --- a/tests/chapters/7/index.html +++ b/tests/chapters/7/index.html @@ -9,21 +9,21 @@ 7 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/7/index.print.html b/tests/chapters/7/index.print.html index 78d3ebb071..534afdd984 100644 --- a/tests/chapters/7/index.print.html +++ b/tests/chapters/7/index.print.html @@ -9,22 +9,22 @@ 7 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/8/index.html b/tests/chapters/8/index.html index e118c468d0..b9564a55c0 100644 --- a/tests/chapters/8/index.html +++ b/tests/chapters/8/index.html @@ -9,21 +9,21 @@ 8 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/8/index.print.html b/tests/chapters/8/index.print.html index 6c2a617a94..e8b9e43dff 100644 --- a/tests/chapters/8/index.print.html +++ b/tests/chapters/8/index.print.html @@ -9,22 +9,22 @@ 8 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/9/index.html b/tests/chapters/9/index.html index 569c6c5b44..824516593f 100644 --- a/tests/chapters/9/index.html +++ b/tests/chapters/9/index.html @@ -9,21 +9,21 @@ 9 :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/9/index.print.html b/tests/chapters/9/index.print.html index 1b0f7a08c1..cd87aae08a 100644 --- a/tests/chapters/9/index.print.html +++ b/tests/chapters/9/index.print.html @@ -9,22 +9,22 @@ 9 :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -77,9 +77,9 @@
    - - - - + + + + diff --git a/tests/chapters/children-1/index.html b/tests/chapters/children-1/index.html index 319d42191c..077913e5d4 100644 --- a/tests/chapters/children-1/index.html +++ b/tests/chapters/children-1/index.html @@ -9,21 +9,21 @@ The one and only hidden child :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -165,12 +165,12 @@ - - - - - - + + + + + +
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/children-1/index.print.html b/tests/chapters/children-1/index.print.html index cb65260166..0f9bc76ac4 100644 --- a/tests/chapters/children-1/index.print.html +++ b/tests/chapters/children-1/index.print.html @@ -9,22 +9,22 @@ The one and only hidden child :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -78,9 +78,9 @@
    - - - - + + + + diff --git a/tests/chapters/index.html b/tests/chapters/index.html index 476a70cfa7..bdfab1bd01 100644 --- a/tests/chapters/index.html +++ b/tests/chapters/index.html @@ -9,21 +9,21 @@ Chapters :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -164,12 +164,12 @@ - - - - - - + + + + + +
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/chapters/index.print.html b/tests/chapters/index.print.html index 537f6d7f67..e47043b4b2 100644 --- a/tests/chapters/index.print.html +++ b/tests/chapters/index.print.html @@ -9,22 +9,22 @@ Chapters :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -320,9 +320,9 @@
    - - - - + + + + diff --git a/tests/code/index.html b/tests/code/index.html index e215b6262c..4575ae304e 100644 --- a/tests/code/index.html +++ b/tests/code/index.html @@ -9,21 +9,21 @@ Code :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -201,12 +201,12 @@ Some preformatted stuff in HTML elements - - - - - - + + + + + +
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/code/index.print.html b/tests/code/index.print.html index fbcf1c25e3..3d689dd83a 100644 --- a/tests/code/index.print.html +++ b/tests/code/index.print.html @@ -9,22 +9,22 @@ Code :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -102,9 +102,9 @@ Some preformatted stuff in HTML elements
    - - - - + + + + diff --git a/tests/images/index.html b/tests/images/index.html index 19251e1c76..d6d5df8316 100644 --- a/tests/images/index.html +++ b/tests/images/index.html @@ -9,21 +9,21 @@ Images :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -251,12 +251,12 @@ - - - - - - + + + + + +
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/images/index.print.html b/tests/images/index.print.html index 93b5d3a72d..22107ce200 100644 --- a/tests/images/index.print.html +++ b/tests/images/index.print.html @@ -9,22 +9,22 @@ Images :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -133,9 +133,9 @@
    - - - - + + + + diff --git a/tests/index.html b/tests/index.html index 5279d72867..f9a8b686f4 100644 --- a/tests/index.html +++ b/tests/index.html @@ -9,21 +9,21 @@ Tests :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -172,12 +172,12 @@ - - - - - - + + + + + +
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/index.print.html b/tests/index.print.html index e31b1fbdf0..27ba6350d9 100644 --- a/tests/index.print.html +++ b/tests/index.print.html @@ -9,22 +9,22 @@ Tests :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -441,15 +441,15 @@ Some preformatted stuff in HTML elements
    -
    -
    +
    +

    Make a visible block

    -
    -
    +
    +

    And another one

    @@ -461,9 +461,9 @@ Some preformatted stuff in HTML elements
    - - - - + + + + diff --git a/tests/width/index.html b/tests/width/index.html index d0284e2e1f..a08d1b4c52 100644 --- a/tests/width/index.html +++ b/tests/width/index.html @@ -9,21 +9,21 @@ Width :: Hugo Relearn Theme - + - - - - - - - - - - - - - + + + + + + + + + + + + + - +
    @@ -86,15 +86,15 @@
    -
    -
    +
    +

    Make a visible block

    -
    -
    +
    +

    And another one

    @@ -177,12 +177,12 @@ - - - - - - + + + + + +
      @@ -205,6 +205,7 @@
    • Tags
  • 3. Shortcodes
  • - - - - + + + + diff --git a/tests/width/index.print.html b/tests/width/index.print.html index dd65e660ce..a05379cdeb 100644 --- a/tests/width/index.print.html +++ b/tests/width/index.print.html @@ -9,22 +9,22 @@ Width :: Hugo Relearn Theme - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - +
    @@ -71,15 +71,15 @@
    -
    -
    +
    +

    Make a visible block

    -
    -
    +
    +

    And another one

    @@ -90,9 +90,9 @@
    - - - - + + + +