imfreedom/www.imfreedom.org

Stop using --verbose as hugo deprecated it
default tip
4 months ago, Gary Kramlich
d9eeec8c7e11
Stop using --verbose as hugo deprecated it

WARN deprecated: --verbose was deprecated in Hugo v0.114.0 and will be removed in a future release. use --logLevel info

Testing Done:
Ran `npm run hugo` and `npm run hugo:server` and verified the warning was gone.

Reviewed at https://reviews.imfreedom.org/r/2881/
# www.imfreedom.org
## Adding meeting minutes
Minutes should be stored in `hugo/content/minutes/<UTC date>.md`. You can use
`hugo` to create it using a provided archetype:
```
$ hugo -s hugo new content/minutes/2019-06-18.md
```
which will fill out the following front matter:
```
---
title: "Minutes for the <UTC date> Board Meeting"
date: <UTC date>
audio:
- "https://data.imfreedom.org/public/board-meetings/audio-<UTC date>.ogg"
videos:
- "https://data.imfreedom.org/public/board-meetings/video-<UTC date>.mp4"
---
```
You may specify multiple audio or video links (or none and leave out the key).
To add a transcript, place the content in a corresponding file named
`hugo/content/transcripts/<UTC date>.md`. It must match the filename of a
minutes file. If you have no minutes, then still add the minutes file with
`unlisted:true` in its front matter.