Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zwbetz-gh/cayman-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzwbetz <zwbetz@gmail.com>2019-03-29 23:23:39 +0300
committerzwbetz <zwbetz@gmail.com>2019-03-29 23:23:39 +0300
commitb24f4a9cc72496150d95ac89a75aa6b194f68135 (patch)
tree62fe31295b651fd423cb3e7490adc87b2f0b6bed
parentd3cd6bc9198e34efff54aa9db59ae099680601e5 (diff)
Convert typography post to markdown
-rw-r--r--exampleSite/config.toml2
-rw-r--r--exampleSite/content/post/cayman-typography.md642
-rw-r--r--layouts/partials/head.html2
3 files changed, 348 insertions, 298 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 1acab05..2e29834 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -5,6 +5,8 @@ title = "Cayman"
theme = "cayman-hugo-theme"
googleAnalytics = "UA-123456789-1"
disqusShortname = "yourdiscussshortname"
+pygmentsCodefences = true
+pygmentsStyle = "pygments"
[taxonomies]
tag = "tags"
diff --git a/exampleSite/content/post/cayman-typography.md b/exampleSite/content/post/cayman-typography.md
index d8a300b..7b24527 100644
--- a/exampleSite/content/post/cayman-typography.md
+++ b/exampleSite/content/post/cayman-typography.md
@@ -4,163 +4,224 @@ date: 2019-03-29
tags: [markdown, typography]
---
-<p>Text can be <strong>bold</strong>, <em>italic</em>, or <del>strikethrough</del>. <a
- href="https://github.com">Links</a> should be blue with no underlines (unless hovered over).</p>
-
-<p>There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be
- whitespace between paragraphs. There should be whitespace between paragraphs.</p>
-
-<p>There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be
- whitespace between paragraphs. There should be whitespace between paragraphs.</p>
-
-<blockquote>
- <p>There should be no margin above this first sentence.</p>
-
- <p>Blockquotes should be a lighter gray with a gray border along the left side.</p>
-
- <p>There should be no margin below this final sentence.</p>
-</blockquote>
-
-<h1>
- <a id="user-content-header-1" class="anchor" href="#header-1" aria-hidden="true"><span
- class="octicon octicon-link"></span></a>Header 1</h1>
-
-<p>This is a normal paragraph following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly
- porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow
- shoulder short ribs biltong.</p>
-
-<h2>
- <a id="user-content-header-2" class="anchor" href="#header-2" aria-hidden="true"><span
- class="octicon octicon-link"></span></a>Header 2</h2>
-
-<blockquote>
- <p>This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly
- porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow
- shoulder short ribs biltong.</p>
-</blockquote>
-
-<h3>
- <a id="user-content-header-3" class="anchor" href="#header-3" aria-hidden="true"><span
- class="octicon octicon-link"></span></a>Header 3</h3>
-
-<pre><code>This is a code block following a header.</code></pre>
-
-<h4>
- <a id="user-content-header-4" class="anchor" href="#header-4" aria-hidden="true"><span
- class="octicon octicon-link"></span></a>Header 4</h4>
-
-<ul class="task-list">
- <li>This is an unordered list following a header.</li>
- <li>This is an unordered list following a header.</li>
- <li>This is an unordered list following a header.</li>
-</ul>
-
-<h5>
- <a id="user-content-header-5" class="anchor" href="#header-5" aria-hidden="true"><span
- class="octicon octicon-link"></span></a>Header 5</h5>
-
-<ol class="task-list">
- <li>This is an ordered list following a header.</li>
- <li>This is an ordered list following a header.</li>
- <li>This is an ordered list following a header.</li>
-</ol>
-
-<h6>
- <a id="user-content-header-6" class="anchor" href="#header-6" aria-hidden="true"><span
- class="octicon octicon-link"></span></a>Header 6</h6>
-
-<table>
- <thead>
- <tr>
- <th>What</th>
- <th>Follows</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>A table</td>
- <td>A header</td>
- </tr>
- <tr>
- <td>A table</td>
- <td>A header</td>
- </tr>
- <tr>
- <td>A table</td>
- <td>A header</td>
- </tr>
- </tbody>
-</table>
-
-<hr>
-
-<p>There's a horizontal rule above and below this.</p>
-
-<hr>
-
-<p>Here is an unordered list:</p>
-
-<ul class="task-list">
- <li>Salt-n-Pepa</li>
- <li>Bel Biv DeVoe</li>
- <li>Kid 'N Play</li>
-</ul>
+## Text
+
+```
+Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://github.com) should be blue with no underlines (unless hovered over).
+```
+
+Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://github.com) should be blue with no underlines (unless hovered over).
+
+## Paragraph
+
+```
+There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs.
+
+There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs.
+```
+
+There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs.
+
+There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs.
+
+## Blockquote
+
+```
+> There should be no margin above this first sentence.
+>
+> Blockquotes should be a lighter gray with a gray border along the left side.
+>
+> There should be no margin below this final sentence.
+```
+
+> There should be no margin above this first sentence.
+>
+> Blockquotes should be a lighter gray with a gray border along the left side.
+>
+> There should be no margin below this final sentence.
+
+## Heading
+
+````
+# Header 1
+
+This is a normal paragraph following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+## Header 2
+
+> This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+### Header 3
+
+```
+This is a code block following a header.
+```
+
+#### Header 4
+
+- This is an unordered list following a header.
+- This is an unordered list following a header.
+- This is an unordered list following a header.
+
+##### Header 5
+
+1. This is an ordered list following a header.
+1. This is an ordered list following a header.
+1. This is an ordered list following a header.
+
+###### Header 6
+
+| What | Follows |
+| --- | --- |
+| A table | A header |
+| A table | A header |
+| A table | A header |
+````
+
+# Header 1
+
+This is a normal paragraph following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+## Header 2
+
+> This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+### Header 3
+
+```
+This is a code block following a header.
+```
+
+#### Header 4
+
+- This is an unordered list following a header.
+- This is an unordered list following a header.
+- This is an unordered list following a header.
+
+##### Header 5
+
+1. This is an ordered list following a header.
+1. This is an ordered list following a header.
+1. This is an ordered list following a header.
+
+###### Header 6
+
+| What | Follows |
+|---------|----------|
+| A table | A header |
+| A table | A header |
+| A table | A header |
+
+## Horizontal Line
+
+```
+---
+
+There's a horizontal rule above and below this.
+
+---
+```
+
+---
+
+There's a horizontal rule above and below this.
+
+---
+
+## List
+
+```
+Here is an unordered list:
+
+- Salt-n-Pepa
+- Bel Biv DeVoe
+- Kid 'N Play
+
+<p>And an ordered list:</p>
+
+1. Michael Jackson
+1. Michael Bolton
+1. Michael Bublé
+
+And an unordered task list:
+
+- [x] Create a sample markdown document
+- [x] Add task lists to it
+- [ ] Take a vacation
+
+And a "mixed" task list:
+
+- [ ] Steal underpants
+- ?
+- [ ] Profit!
+
+And a nested list:
+
+- Jackson 5
+ - Michael
+ - Tito
+ - Jackie
+ - Marlon
+ - Jermaine
+- TMNT
+ - Leonardo
+ - Michelangelo
+ - Donatello
+ - Raphael
+
+Definition lists can be used with HTML syntax. Definition terms are bold and italic.
+
+<dl>
+ <dt>Name</dt>
+ <dd>Godzilla</dd>
+ <dt>Born</dt>
+ <dd>1952</dd>
+ <dt>Birthplace</dt>
+ <dd>Japan</dd>
+ <dt>Color</dt>
+ <dd>Green</dd>
+</dl>
+```
+
+Here is an unordered list:
+
+- Salt-n-Pepa
+- Bel Biv DeVoe
+- Kid 'N Play
<p>And an ordered list:</p>
-<ol class="task-list">
- <li>Michael Jackson</li>
- <li>Michael Bolton</li>
- <li>Michael Bublé</li>
-</ol>
-
-<p>And an unordered task list:</p>
-
-<ul class="task-list">
- <li class="task-list-item">
- <input type="checkbox" class="task-list-item-checkbox" checked="" disabled=""> Create a sample markdown document
- </li>
- <li class="task-list-item">
- <input type="checkbox" class="task-list-item-checkbox" checked="" disabled=""> Add task lists to it</li>
- <li class="task-list-item">
- <input type="checkbox" class="task-list-item-checkbox" disabled=""> Take a vacation</li>
-</ul>
-
-<p>And a "mixed" task list:</p>
-
-<ul class="task-list">
- <li class="task-list-item">
- <input type="checkbox" class="task-list-item-checkbox" disabled=""> Steal underpants</li>
- <li>?</li>
- <li class="task-list-item">
- <input type="checkbox" class="task-list-item-checkbox" disabled=""> Profit!</li>
-</ul>
-
-<p>And a nested list:</p>
-
-<ul class="task-list">
- <li>Jackson 5
-
- <ul class="task-list">
- <li>Michael</li>
- <li>Tito</li>
- <li>Jackie</li>
- <li>Marlon</li>
- <li>Jermaine</li>
- </ul>
- </li>
- <li>TMNT
-
- <ul class="task-list">
- <li>Leonardo</li>
- <li>Michelangelo</li>
- <li>Donatello</li>
- <li>Raphael</li>
- </ul>
- </li>
-</ul>
-
-<p>Definition lists can be used with HTML syntax. Definition terms are bold and italic.</p>
+1. Michael Jackson
+1. Michael Bolton
+1. Michael Bublé
+
+And an unordered task list:
+
+- [x] Create a sample markdown document
+- [x] Add task lists to it
+- [ ] Take a vacation
+
+And a "mixed" task list:
+
+- [ ] Steal underpants
+- ?
+- [ ] Profit!
+
+And a nested list:
+
+- Jackson 5
+ - Michael
+ - Tito
+ - Jackie
+ - Marlon
+ - Jermaine
+- TMNT
+ - Leonardo
+ - Michelangelo
+ - Donatello
+ - Raphael
+
+Definition lists can be used with HTML syntax. Definition terms are bold and italic.
<dl>
<dt>Name</dt>
@@ -173,146 +234,133 @@ tags: [markdown, typography]
<dd>Green</dd>
</dl>
-<hr>
-
-<p>Tables should have bold headings and alternating shaded rows.</p>
-
-<table>
- <thead>
- <tr>
- <th>Artist</th>
- <th>Album</th>
- <th>Year</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>Michael Jackson</td>
- <td>Thriller</td>
- <td>1982</td>
- </tr>
- <tr>
- <td>Prince</td>
- <td>Purple Rain</td>
- <td>1984</td>
- </tr>
- <tr>
- <td>Beastie Boys</td>
- <td>License to Ill</td>
- <td>1986</td>
- </tr>
- </tbody>
-</table>
-
-<p>If a table is too wide, it should condense down and/or scroll horizontally.</p>
-
-<table>
- <thead>
- <tr>
- <th>Artist</th>
- <th>Album</th>
- <th>Year</th>
- <th>Label</th>
- <th>Awards</th>
- <th>Songs</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>Michael Jackson</td>
- <td>Thriller</td>
- <td>1982</td>
- <td>Epic Records</td>
- <td>Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for
- Favorite Soul/R&amp;B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album,
- Non-Classical</td>
- <td>Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature,
- P.Y.T. (Pretty Young Thing), The Lady in My Life</td>
- </tr>
- <tr>
- <td>Prince</td>
- <td>Purple Rain</td>
- <td>1984</td>
- <td>Warner Brothers Records</td>
- <td>Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album,
- American Music Award for Favorite Soul/R&amp;B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy
- Award for Best Rock Performance by a Duo or Group with Vocal</td>
- <td>Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die
- 4 U, Baby I'm a Star, Purple Rain</td>
- </tr>
- <tr>
- <td>Beastie Boys</td>
- <td>License to Ill</td>
- <td>1986</td>
- <td>Mercury Records</td>
- <td>noawardsbutthistablecelliswide</td>
- <td>Rhymin &amp; Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for
- Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get
- Ill</td>
- </tr>
- </tbody>
-</table>
-
-<hr>
-
-<p>Code snippets like <code>var foo = "bar";</code> can be shown inline.</p>
-
-<p>Also, <code>this should vertically align</code> <del><code>with this</code></del> <del>and this</del>.</p>
-
-<p>Code can also be shown in a block element.</p>
-
-<pre><code>var foo = "bar";
-</code></pre>
-
-<p>Code can also use syntax highlighting.</p>
-
-<div class="highlight highlight-Javascript">
- <pre><span class="pl-k">var</span> foo <span class="pl-k">=</span> <span class="pl-s"><span class="pl-pds">"</span>bar<span class="pl-pds">"</span></span>;</pre>
-</div>
-
-<pre><code>Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this.</code></pre>
-
-<div class="highlight highlight-Javascript">
- <pre><span class="pl-k">var</span> foo <span class="pl-k">=</span> <span class="pl-s"><span class="pl-pds">"</span>The same thing is true for code with syntax highlighting. A single line of code should horizontally scroll if it is really long.<span class="pl-pds">"</span></span>;</pre>
-</div>
-
-<p>Inline code inside table cells should still be distinguishable.</p>
-
-<table>
- <thead>
- <tr>
- <th>Language</th>
- <th>Code</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>Javascript</td>
- <td><code>var foo = "bar";</code></td>
- </tr>
- <tr>
- <td>Ruby</td>
- <td><code>foo = "bar"</code></td>
- </tr>
- </tbody>
-</table>
-
-<hr>
-
-<p>Small images should be shown at their actual size.</p>
-
-<p><a
- href="https://camo.githubusercontent.com/16a9d5241f679b6429fc0597f10816dd2665bbb2/687474703a2f2f706c6163656b697474656e2e636f6d2f672f3330302f3230302f"
- target="_blank"><img
- src="https://camo.githubusercontent.com/16a9d5241f679b6429fc0597f10816dd2665bbb2/687474703a2f2f706c6163656b697474656e2e636f6d2f672f3330302f3230302f"
- alt="" data-canonical-src="https://placekitten.com/g/300/200/" style="max-width:100%;"></a></p>
-
-<p>Large images should always scale down and fit in the content container.</p>
-
-<p><a
- href="https://camo.githubusercontent.com/afe46418285497605cf4f6376b75f8c818658fb1/687474703a2f2f706c6163656b697474656e2e636f6d2f672f313230302f3830302f"
- target="_blank"><img
- src="https://camo.githubusercontent.com/afe46418285497605cf4f6376b75f8c818658fb1/687474703a2f2f706c6163656b697474656e2e636f6d2f672f313230302f3830302f"
- alt="" data-canonical-src="https://placekitten.com/g/1200/800/" style="max-width:100%;"></a></p>
-
-<pre><code>This is the final element on the page and there should be no margin below this.</code></pre>
+## Table
+
+```
+Tables should have bold headings and alternating shaded rows.
+
+| Artist | Album | Year |
+|-----------------|----------------|------|
+| Michael Jackson | Thriller | 1982 |
+| Prince | Purple Rain | 1984 |
+| Beastie Boys | License to Ill | 1986 |
+
+<br>
+
+| Artist | Album | Year | Label | Awards | Songs |
+|-----------------|----------------|------|-------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life |
+| Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain |
+| Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill |
+```
+
+Tables should have bold headings and alternating shaded rows.
+
+| Artist | Album | Year |
+|-----------------|----------------|------|
+| Michael Jackson | Thriller | 1982 |
+| Prince | Purple Rain | 1984 |
+| Beastie Boys | License to Ill | 1986 |
+
+<br>
+
+| Artist | Album | Year | Label | Awards | Songs |
+|-----------------|----------------|------|-------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life |
+| Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain |
+| Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill |
+
+
+## Code
+
+````
+Code snippets like `var foo = "bar";` can be shown inline.
+
+Also, `this should vertically align` ~~`with this`~~ ~~and this~~.
+
+Code can also be shown in a block element.
+
+```
+var foo = "bar";
+```
+
+Code can also use syntax highlighting.
+
+```js
+var foo = "bar";
+```
+
+```
+Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this.
+```
+
+```js
+var foo = "The same thing is true for code with syntax highlighting. A single line of code should horizontally scroll if it is really long.";
+```
+
+Inline code inside table cells should still be distinguishable.
+
+| Language | Code |
+|------------|--------------------|
+| Javascript | `var foo = "bar";` |
+| Ruby | `foo = "bar"` |
+````
+
+Code snippets like `var foo = "bar";` can be shown inline.
+
+Also, `this should vertically align` ~~`with this`~~ ~~and this~~.
+
+Code can also be shown in a block element.
+
+```
+var foo = "bar";
+```
+
+Code can also use syntax highlighting.
+
+```js
+var foo = "bar";
+```
+
+```
+Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this.
+```
+
+```js
+var foo = "The same thing is true for code with syntax highlighting. A single line of code should horizontally scroll if it is really long.";
+```
+
+Inline code inside table cells should still be distinguishable.
+
+| Language | Code |
+|------------|--------------------|
+| Javascript | `var foo = "bar";` |
+| Ruby | `foo = "bar"` |
+
+## Image
+
+````
+Small images should be shown at their actual size.
+
+![](https://unsplash.it/300/200)
+
+Large images should always scale down and fit in the content container.
+
+![](https://unsplash.it/1200/800)
+
+```
+This is the final element on the page and there should be no margin below this.
+```
+````
+
+Small images should be shown at their actual size.
+
+![](https://unsplash.it/300/200)
+
+Large images should always scale down and fit in the content container.
+
+![](https://unsplash.it/1200/800)
+
+```
+This is the final element on the page and there should be no margin below this.
+```
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index fa7865b..6f2295e 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -8,5 +8,5 @@
{{ $options := (dict "targetPath" "css/cayman.css") }}
{{ $caymanCss := resources.Get "scss/cayman.scss" | toCSS $options | fingerprint }}
<link rel="stylesheet" href="{{ $caymanCss.Permalink }}">
- <title>{{ .Title }}</title>
+ <title>{{ .Title }} | {{ $.Site.Title }}</title>
</head>