From c62329ce102df226cc62b832232d6e9d528bd0df Mon Sep 17 00:00:00 2001 From: Mantas <11616378+mistermantas@users.noreply.github.com> Date: Thu, 9 May 2019 21:20:38 +0300 Subject: #27 - 1st working API kinda --- exampleSite/config.yml | 13 +++++++++++++ .../content/issues/2018-05-25-us-east-conn-issues.md | 1 + layouts/_default/single.html | 4 +++- layouts/issues/single.json | 14 ++++++++++++++ 4 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 layouts/issues/single.json diff --git a/exampleSite/config.yml b/exampleSite/config.yml index 5df05d8..8e88fb6 100644 --- a/exampleSite/config.yml +++ b/exampleSite/config.yml @@ -263,3 +263,16 @@ preserveTaxonomyNames: true taxonomies: affected: affected + +outputs: + page: + - html + - json + section: + - html + - json + - rss + home: + - html + - json + - rss \ No newline at end of file diff --git a/exampleSite/content/issues/2018-05-25-us-east-conn-issues.md b/exampleSite/content/issues/2018-05-25-us-east-conn-issues.md index 524035b..8178189 100644 --- a/exampleSite/content/issues/2018-05-25-us-east-conn-issues.md +++ b/exampleSite/content/issues/2018-05-25-us-east-conn-issues.md @@ -8,6 +8,7 @@ severity: down affected: - API - Media Proxy + - Gateway section: issue --- diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 51a09e8..48596df 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -2,7 +2,9 @@
← {{ T "goBack" }} {{ .Site.Title }} -
+ +
+ {{ .Content }}
diff --git a/layouts/issues/single.json b/layouts/issues/single.json new file mode 100644 index 0000000..6287288 --- /dev/null +++ b/layouts/issues/single.json @@ -0,0 +1,14 @@ + +{ + "section": "{{ .Section }}", + "title": "{{ .Title }}", + "created_at": "{{ .Date }}", + "severity": "{{ .Params.severity }}", + "resolved": "{{ .Params.resolved }}", + "resolved_at": "{{ .Params.resolvedWhen }}", + "affected": [{{ range $i, $e := .Params.Affected }}{{ if $i }}, {{ end }}'{{ . }}'{{ end }}], + + "body": {{ jsonify .Content }}, + + "filename": "{{ .File.LogicalName }}" +} \ No newline at end of file -- cgit v1.2.3-70-g09d2