-
Notifications
You must be signed in to change notification settings - Fork 453
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ChrisChinchilla
committed
Aug 13, 2020
1 parent
40d6f9f
commit ce92f32
Showing
6 changed files
with
115 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
+++ | ||
title = "Home" | ||
date = 2020-04-01T19:26:56-04:00 | ||
weight = 4 | ||
chapter = false | ||
+++ | ||
|
||
{{< tabs name="tab_with_md" >}} | ||
{{% tab name="Markdown" %}} | ||
This is **some markdown.** | ||
```bash | ||
code | ||
``` | ||
{{% /tab %}} | ||
{{< tab name="HTML" >}} | ||
|
||
HTML | ||
|
||
{{< /tab >}} | ||
{{< tab name="JSON" >}} | ||
|
||
Include code from elsewhere. | ||
|
||
{{% codeinclude file="/static/podtemplate.json" language="json" %}} | ||
|
||
{{< /tab >}} | ||
{{< /tabs >}} | ||
|
||
{{< glossary_tooltip text="test" term_id="test" >}} | ||
|
||
```go {hl_lines=[2]} | ||
func GetTitleFunc(style string) func(s string) string { | ||
switch strings.ToLower(style) { | ||
case "go": | ||
return strings.Title | ||
case "chicago": | ||
return transform.NewTitleConverter(transform.ChicagoStyle) | ||
default: | ||
return transform.NewTitleConverter(transform.APStyle) | ||
} | ||
|
||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"apiVersion": "v1", | ||
"kind": "PodTemplate", | ||
"metadata": { | ||
"name": "nginx" | ||
}, | ||
"template": { | ||
"metadata": { | ||
"labels": { | ||
"name": "nginx" | ||
}, | ||
"generateName": "nginx-" | ||
}, | ||
"spec": { | ||
"containers": [{ | ||
"name": "nginx", | ||
"image": "dockerfile/nginx", | ||
"ports": [{"containerPort": 80}] | ||
}] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: Standardized Glossary | ||
layout: glossary | ||
noedit: true | ||
default_active_tag: test | ||
weight: 5 | ||
card: | ||
name: reference | ||
weight: 10 | ||
title: Glossary | ||
--- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
title: test | ||
id: test | ||
date: 2019-06-15 | ||
full_link: | ||
short_description: > | ||
I am a test term. | ||
aka: | ||
tags: | ||
- example | ||
- illustration | ||
--- | ||
An example. | ||
|
||
<!--more--> | ||
A much bigger example |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"apiVersion": "v1", | ||
"kind": "PodTemplate", | ||
"metadata": { | ||
"name": "nginx" | ||
}, | ||
"template": { | ||
"metadata": { | ||
"labels": { | ||
"name": "nginx" | ||
}, | ||
"generateName": "nginx-" | ||
}, | ||
"spec": { | ||
"containers": [{ | ||
"name": "nginx", | ||
"image": "dockerfile/nginx", | ||
"ports": [{"containerPort": 80}] | ||
}] | ||
} | ||
} | ||
} |