Changes file extension

This commit is contained in:
Andrew Gioia 2023-09-26 19:34:24 +00:00
parent 1712a885d9
commit dafaeaabda
2 changed files with 22 additions and 22 deletions

View File

@ -1,22 +0,0 @@
<!--
-- Hugo shortcode for content pages to access data file properties or counts
--
-- @param file data file to reference in ./data
-- @param key key in the data file object whose value you want
-- @param type `count` to get a count of all items if an array, `value` to get the key's value
--
-- {{% getdata file="icons.json" key="address-book" type="value" %}}
-->
{{- $file := .Get "file" -}}
{{- $key := .Get "key" -}}
{{- $type := .Get "type" -}}
{{- if eq $type "count" -}}
{{- if $key -}}
{{- (index .Site.Data $file $key) | len -}}
{{- else -}}
{{- (index .Site.Data $file) | len -}}
{{- end -}}
{{- else -}}
{{- index .Site.Data $file $key -}}
{{- end -}}

View File

@ -0,0 +1,22 @@
/**
* Hugo shortcode for content pages to access data file properties or counts
*
* @param file data file to reference in ./data
* @param key key in the data file object whose value you want
* @param type `count` to get a count of all items if an array, `value` to get the key's value
*
* {{% getdata file="icons.json" key="address-book" type="value" %}}
*/
{{- $file := .Get "file" -}}
{{- $key := .Get "key" -}}
{{- $type := .Get "type" -}}
{{- if eq $type "count" -}}
{{- if $key -}}
{{- (index .Site.Data $file $key) | len -}}
{{- else -}}
{{- (index .Site.Data $file) | len -}}
{{- end -}}
{{- else -}}
{{- index .Site.Data $file $key -}}
{{- end -}}