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

github.com/spookey/slick.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrieder Griesshammer <frieder.griesshammer@der-beweis.de>2021-05-14 19:15:13 +0300
committerFrieder Griesshammer <frieder.griesshammer@der-beweis.de>2021-05-14 19:15:13 +0300
commit1a0e3c9de99c7077280fb3aeacb21979d0e8ca5d (patch)
tree57396c7deeb1d5d801e1a3cd3420fcac515ba313
parenta0ef27527cbe36cd075bd35b12fb093e130875fd (diff)
Add showcase page into example page
-rw-r--r--_sites/example/content/slick_showcase.md133
1 files changed, 133 insertions, 0 deletions
diff --git a/_sites/example/content/slick_showcase.md b/_sites/example/content/slick_showcase.md
new file mode 100644
index 0000000..b611b9b
--- /dev/null
+++ b/_sites/example/content/slick_showcase.md
@@ -0,0 +1,133 @@
+---
+title: Slick Showcase
+slug: slick-showcase
+description: Showcase of supported markup for Slick theme
+date: 2018-12-23T17:42:23+01:00
+draft: false
+menu:
+ main:
+ name: Showcase
+ weight: 111
+categories:
+- Showcase
+tags:
+- hugo
+- slick
+- themes
+series:
+- Slick
+---
+
+This is some example page to show some supported markup for the
+[Slick](https://github.com/spookey/slick) Hugo theme.
+<!--more-->
+
+## Content
+
+| Tables | and | examples |
+| -------------- | -------------------------------------- | ----------------- |
+| *italic* | **bold** | `monospace` |
+| [link](#) | <abbr title="Abbreviation">abbr</abbr> | <mark>mark</mark> |
+| <sub>sub</sub> | <sup>sup</sup> | what's up? |
+
+<blockquote>
+ <p>
+ Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>DEL</kbd></kbd> for
+ ultimate pleasure!
+ </p>
+ <footer>— <cite>N. Erd</cite></footer>
+</blockquote>
+
+
+1. See second.
+2. See first.
+3. You are trapped in a loop!
+
+* Never
+* Gonna
+ * Give
+ * You
+ * Up
+
+Definition
+: A definition is a statement of the meaning of a term.
+
+
+Code is displayed in little boxes:
+
+```text
+ __________________
+ /\ ______________ \
+ /::\ \ZZZZZZZZZZZZ/\ \
+ /:/\.\ \ /:/\:\ \
+ /:/Z/\:\ \ /:/Z/\:\ \
+ /:/Z/__\:\ \____/:/Z/ \:\ \
+ /:/Z/____\:\ \___\/Z/ \:\ \
+ \:\ \ZZZZZ\:\ \ZZ/\ \ \:\ \
+ \:\ \ \:\ \ \:\ \ \:\ \
+ \:\ \ \:\ \_\:\_\_____\:\ \
+ \:\ \ \:\_________________\
+ \:\ \ /:/ZZZZZZZZZZZZZZZZZ/
+ \:\ \ /:/Z/ \:\ \ /:/Z/
+ \:\ \/:/Z/ \:\ \/:/Z/
+ \:\/:/Z/________\:\/:/Z/
+ \::/Z/____________\/Z/
+ \/ZZZZZZZZZZZZZZZZZ/
+ 
+```
+
+
+It ain't ``much``, but it's ``honest`` work!
+
+---
+
+```text
+This is some really long line of text, just to check how this pages behaves if something like that occurs.
+Whatever!
+```
+
+---
+
+{{< highlight python "linenos=table,hl_lines=3 6 11-13,linenostart=99989" >}}
+class Silly(object):
+ '''This is just some silly example code'''
+ def __init__(self, value):
+ self.value = value
+
+ def stuff(self):
+ return 'value is {}'.format(self.value)
+
+
+def main():
+ silly = Silly(42)
+ print(silly.stuff())
+ return True
+
+
+if __name__ == '__main__':
+ exit(not main())
+{{< / highlight >}}
+
+---
+
+{{< highlight python "linenos=inline,hl_lines=3 6 11-13,linenostart=99989" >}}
+class Silly(object):
+ '''This is just some silly example code'''
+ def __init__(self, value):
+ self.value = value
+
+ def stuff(self):
+ return 'value is {}'.format(self.value)
+
+
+def main():
+ silly = Silly(42)
+ print(silly.stuff())
+ return True
+
+
+if __name__ == '__main__':
+ exit(not main())
+{{< / highlight >}}
+
+Text