diff options
author | Mantas <11616378+mistermantas@users.noreply.github.com> | 2019-05-09 21:20:38 +0300 |
---|---|---|
committer | Mantas <11616378+mistermantas@users.noreply.github.com> | 2019-05-09 21:20:38 +0300 |
commit | c62329ce102df226cc62b832232d6e9d528bd0df (patch) | |
tree | b12fe89fdbf71fbb54c3442424d55ab5e5e5ccc3 /layouts/issues | |
parent | 382d35c944c8f989669787639475da12c537fa9a (diff) |
#27 - 1st working API kinda
Diffstat (limited to 'layouts/issues')
-rw-r--r-- | layouts/issues/single.json | 14 |
1 files changed, 14 insertions, 0 deletions
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 |