-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Implement glossary * use proper datatype for term * more glossary work * define cloudposse * use term in sentence
- Loading branch information
Showing
12 changed files
with
270 additions
and
167 deletions.
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 |
---|---|---|
|
@@ -11,4 +11,10 @@ indent_size = 4 | |
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.js] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
|
||
|
||
|
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 |
---|---|---|
|
@@ -17,4 +17,5 @@ run: | |
|
||
## Generate all static content (outputs to public/) | ||
build: | ||
@$(HUGO) | ||
rm -rf public/ | ||
$(HUGO) |
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,9 @@ | ||
--- | ||
title: "Glossary" | ||
slug: glossary | ||
excerpt: "Glossary of definitions" | ||
outputs: | ||
- HTML | ||
- RSS | ||
- 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,12 @@ | ||
--- | ||
title: AWS | ||
terms: | ||
- "Amazon Web Services" | ||
- "AWS" | ||
- "aws cli" | ||
- "awscli" | ||
- "aws-cli" | ||
excerpt: "Amazon Web Services" | ||
--- | ||
Amazon Web Services is a public cloud offering from Amazon. It's also a command line tool (`aws`) use to control services running on the platform. | ||
|
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: Cloud Posse, LLC | ||
terms: | ||
- "cloudposse" | ||
- "cloud posse" | ||
- "cloud posse llc" | ||
- "cloud posse, llc" | ||
- "cloudposse, llc" | ||
- "!cloudposse.com" | ||
excerpt: "Cloud Posse is a DevOps professional services company" | ||
--- | ||
Cloud Posse is a DevOps professional services company. Let us know how we can help. Reach us at <[email protected]>. |
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,8 @@ | ||
--- | ||
title: Infrastructure | ||
terms: | ||
- infrastructure | ||
- !AWS Infrastructure | ||
excerpt: "Infrastructure is everything that supports running your software" | ||
--- | ||
Infrastructure is everything that supports running your software. |
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,5 @@ | ||
{{- $.Scratch.Add "glossary" slice -}} | ||
{{ range $index, $element := .Data.Pages }} | ||
{{- $.Scratch.Add "glossary" (dict "term" (delimit $element.Params.terms ", ") "description" ($element.Content|markdownify)) -}} | ||
{{ end }} | ||
{{- $.Scratch.Get "glossary" | jsonify -}} |
Empty file.
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.