Przeglądaj źródła

Cleans up new theme submodule and sample posts

Colin Powell 6 miesięcy temu
rodzic
commit
3c99ca2dbf

+ 1 - 0
.drone.yml

@@ -10,6 +10,7 @@ steps:
   - name: build
     image: klakegg/hugo:alpine
     commands:
+      - git submodule update --init --recursive
       - hugo -d /tmp/.build/public
     volumes:
       - name: hugo

+ 0 - 6
content/post/2015-01-15-pirates.md

@@ -1,6 +0,0 @@
----
-title: Pirates arrrr
-date: 2015-01-15
----
-
-Piracy is typically an act of robbery or criminal violence at sea. The term can include acts committed on land, in the air, or in other major bodies of water or on a shore. It does not normally include crimes committed against persons traveling on the same vessel as the perpetrator (e.g. one passenger stealing from others on the same vessel). The term has been used throughout history to refer to raids across land borders by non-state agents.

+ 0 - 41
content/post/2015-02-13-hamlet-monologue.md

@@ -1,41 +0,0 @@
----
-title: To be
-subtitle: ... or not to be?
-date: 2015-02-13
----
-
-To be, or not to be--that is the question:
-Whether 'tis nobler in the mind to suffer
-The slings and arrows of outrageous fortune
-Or to take arms against a sea of troubles
-And by opposing end them. To die, to sleep--
-No more--and by a sleep to say we end
-The heartache, and the thousand natural shocks
-That flesh is heir to. 'Tis a consummation
-Devoutly to be wished. To die, to sleep--
-To sleep--perchance to dream: ay, there's the rub,
-For in that sleep of death what dreams may come
-When we have shuffled off this mortal coil,
-Must give us pause. There's the respect
-That makes calamity of so long life.
-For who would bear the whips and scorns of time,
-Th' oppressor's wrong, the proud man's contumely
-The pangs of despised love, the law's delay,
-The insolence of office, and the spurns
-That patient merit of th' unworthy takes,
-When he himself might his quietus make
-With a bare bodkin? Who would fardels bear,
-To grunt and sweat under a weary life,
-But that the dread of something after death,
-The undiscovered country, from whose bourn
-No traveller returns, puzzles the will,
-And makes us rather bear those ills we have
-Than fly to others that we know not of?
-Thus conscience does make cowards of us all,
-And thus the native hue of resolution
-Is sicklied o'er with the pale cast of thought,
-And enterprise of great pitch and moment
-With this regard their currents turn awry
-And lose the name of action. -- Soft you now,
-The fair Ophelia! -- Nymph, in thy orisons
-Be all my sins remembered.

+ 0 - 35
content/post/2015-02-20-test-markdown.md

@@ -1,35 +0,0 @@
----
-title: Test markdown
-subtitle: Each post also has a subtitle
-date: 2015-02-20
-tags: ["example", "markdown"]
----
-
-You can write regular [markdown](https://markdowntutorial.com/) here and [Hugo](https://gohugo.io) will automatically convert it to a nice webpage.  I strongly encourage you to [take 5 minutes to learn how to write in markdown](https://markdowntutorial.com/) - it'll teach you how to transform regular text into bold/italics/headings/tables/etc.
-
-**Here is some bold text**
-
-## Here is a secondary heading
-
-Here's a useless table:
- 
-| Number | Next number | Previous number |
-| :------ |:--- | :--- |
-| Five | Six | Four |
-| Ten | Eleven | Nine |
-| Seven | Eight | Six |
-| Two | Three | One |
- 
-
-How about a yummy crepe?
-
-![Crepe](https://s3-media3.fl.yelpcdn.com/bphoto/cQ1Yoa75m2yUFFbY2xwuqw/348s.jpg)
-
-Here's a code chunk with syntax highlighting:
-
-```javascript
-var foo = function(x) {
-  return(x + 5);
-}
-foo(3)
-```

+ 0 - 42
content/post/2016-03-08-code-sample.md

@@ -1,42 +0,0 @@
----
-title: Code Sample
-subtitle: Using Hugo or Pygments
-date: 2016-03-08
-tags: ["example", "code"]
----
-
-The following are two code samples using syntax highlighting.
-
-<!--more-->
-
-The following is a code sample using triple backticks ( ``` ) code fencing provided in Hugo. This is client side highlighting and does not require any special installation.
-
-```javascript
-    var num1, num2, sum
-    num1 = prompt("Enter first number")
-    num2 = prompt("Enter second number")
-    sum = parseInt(num1) + parseInt(num2) // "+" means "add"
-    alert("Sum = " + sum)  // "+" means combine into a string
-```
-
-
-The following is a code sample using the "highlight" shortcode provided in Hugo. This is server side highlighting and requires Python and Pygments to be installed.
-
-{{< highlight javascript >}}
-    var num1, num2, sum
-    num1 = prompt("Enter first number")
-    num2 = prompt("Enter second number")
-    sum = parseInt(num1) + parseInt(num2) // "+" means "add"
-    alert("Sum = " + sum)  // "+" means combine into a string
-{{</ highlight >}}
-
-
-And here is the same code with line numbers:
-
-{{< highlight javascript "linenos=inline">}}
-    var num1, num2, sum
-    num1 = prompt("Enter first number")
-    num2 = prompt("Enter second number")
-    sum = parseInt(num1) + parseInt(num2) // "+" means "add"
-    alert("Sum = " + sum)  // "+" means combine into a string
-{{</ highlight >}}

+ 0 - 49
content/post/2017-03-05-math-sample.md

@@ -1,49 +0,0 @@
----
-title: Math Sample
-subtitle: Using KaTeX
-date: 2017-03-05
-tags: ["example", "math"]
----
-
-KaTeX can be used to generate complex math formulas server-side. 
-
-$$
-\phi = \frac{(1+\sqrt{5})}{2} = 1.6180339887\cdots
-$$
-
-Additional details can be found on [GitHub](https://github.com/KaTeX/KaTeX) or on the [project homepage](https://katex.org/).
-<!--more-->
-
-### Example 1
-
-If the text between $$ contains newlines it will rendered in display mode:
-```
-$$
-f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi
-$$
-```
-$$
-f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi
-$$
-
-
-### Example 2
-```
-$$
-\frac{1}{\Bigl(\sqrt{\phi \sqrt{5}}-\phi\Bigr) e^{\frac25 \pi}} = 1+\frac{e^{-2\pi}} {1+\frac{e^{-4\pi}} {1+\frac{e^{-6\pi}} {1+\frac{e^{-8\pi}} {1+\cdots} } } }
-$$
-```
-​​$$
-\frac{1}{\Bigl(\sqrt{\phi \sqrt{5}}-\phi\Bigr) e^{\frac25 \pi}} = 1+\frac{e^{-2\pi}} {1+\frac{e^{-4\pi}} {1+\frac{e^{-6\pi}} {1+\frac{e^{-8\pi}} {1+\cdots} } } }
-$$
-​​ 
-
-### Example 3
-```
-$$
-1 +  \frac{q^2}{(1-q)}+\frac{q^6}{(1-q)(1-q^2)}+\cdots = \prod_{j=0}^{\infty}\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}, \quad\quad \text{for }\lvert q\rvert<1.
-$$
-```
-$$
-1 +  \frac{q^2}{(1-q)}+\frac{q^6}{(1-q)(1-q^2)}+\cdots = \prod_{j=0}^{\infty}\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}, \quad\quad \text{for }\lvert q\rvert<1.
-$$

+ 0 - 40
content/post/2017-03-07-bigimg-sample.md

@@ -1,40 +0,0 @@
----
-title: Big Image Sample
-subtitle: Using Multiple Images
-date: 2017-03-07
-tags: ["example", "bigimg"]
-bigimg: [{src: "/img/triangle.jpg", desc: "Triangle"}, {src: "/img/sphere.jpg", desc: "Sphere"}, {src: "/img/hexagon.jpg", desc: "Hexagon"}]
----
-
-The image banners at the top of the page are refered to as "bigimg" in this theme. They are optional, and one more more can be specified. If more than one is specified, the images rotate every 10 seconds. In the front matter, bigimgs are specified using an array of hashes.
-
-<!--more-->
-
-A single bigimg can be specified in the front matter by the following YAML:
-```
-bigimg: [{src: "/img/triangle.jpg", desc: "Triangle"}]
-```
-
-Multiple bigimgs can be specified in the front matter by the following YAML:
-```
-bigimg: [{src: "/img/triangle.jpg", desc: "Triangle"}, 
-         {src: "/img/sphere.jpg", desc: "Sphere"}, 
-         {src: "/img/hexagon.jpg", desc: "Hexagon"}]
-```
-
-Also note that the description field is optional, and images could instead be specified by:
-```
-bigimg: [{src: "/img/triangle.jpg"}, 
-         {src: "/img/sphere.jpg"}, 
-         {src: "/img/hexagon.jpg"}]
-```
-
-The above YAML array of hashes were written in "flow" style. However when generating a new page or post with `hugo new post/mypost.md`, hugo may interpret the archetype for bigimg in the default YAML style. Defining multiple bigimg's complete with descriptions in this style would be specified by:
-```
-bigimg: 
-- {src: "/img/triangle.jpg", desc: "Triangle"}
-- {src: "/img/sphere.jpg", desc: "Sphere"}
-- {src: "/img/hexagon.jpg", desc: "Hexagon"}
-```
-
-Additional information can be found [in this YAML tutorial](https://rhnh.net/2011/01/31/yaml-tutorial/).

+ 0 - 34
content/post/2017-03-20-photoswipe-gallery-sample.md

@@ -1,34 +0,0 @@
----
-title: Photoswipe Gallery Sample
-subtitle: Making a Gallery
-date: 2017-03-20
-tags: ["example", "photoswipe"]
----
-
-Beautiful Hugo adds a few custom shortcodes created by [Li-Wen Yip](https://www.liwen.id.au/heg/) and [Gert-Jan van den Berg](https://github.com/GjjvdBurg/HugoPhotoSwipe) for making galleries with [PhotoSwipe](https://photoswipe.com) . 
-
-{{< gallery caption-effect="fade" >}}
-  {{< figure thumb="-thumb" link="/img/hexagon.jpg" >}}
-  {{< figure thumb="-thumb" link="/img/sphere.jpg" caption="Sphere" >}}
-  {{< figure thumb="-thumb" link="/img/triangle.jpg" caption="Triangle" alt="This is a long comment about a triangle" >}}
-{{< /gallery >}}
-
-<!--more-->
-## Example
-The above gallery was created using the following shortcodes:
-``` html
-{{</* gallery caption-effect="fade" */>}}
-  {{</* figure thumb="-thumb" link="/img/hexagon.jpg" */>}}
-  {{</* figure thumb="-thumb" link="/img/sphere.jpg" caption="Sphere" */>}}
-  {{</* figure thumb="-thumb" link="/img/triangle.jpg" caption="Triangle" alt="This is a long comment about a triangle" */>}}
-{{</* /gallery */>}}
-```
-
-``` python
-from collections import deque
-
-queue = deque()
-
-for x in queue:
-    print(x)
-```