chore: add some headers
This commit is contained in:
parent
e58a220488
commit
490884ffca
5 changed files with 15 additions and 6 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.2.6",
|
"version": "19.2.7",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.2.6",
|
"version": "19.2.7",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.4.0",
|
"@cdransf/api-text": "^1.4.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.2.6",
|
"version": "19.2.7",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -52,5 +52,8 @@ schema: book
|
||||||
{{ book.review | markdown }}
|
{{ book.review | markdown }}
|
||||||
<hr class="large-spacing" />
|
<hr class="large-spacing" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if book.description %}{{ book.description | markdown }}{% endif %}
|
{% if book.description %}
|
||||||
|
<h2>Overview</h2>
|
||||||
|
{{ book.description | markdown }}
|
||||||
|
{% endif %}
|
||||||
</article>
|
</article>
|
|
@ -42,5 +42,8 @@ schema: movie
|
||||||
{{ movie.review | markdown }}
|
{{ movie.review | markdown }}
|
||||||
<hr class="large-spacing" />
|
<hr class="large-spacing" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if movie.description %}{{ movie.description | markdown }}{% endif %}
|
{% if movie.description %}
|
||||||
|
<h2>Overview</h2>
|
||||||
|
{{ movie.description | markdown }}
|
||||||
|
{% endif %}
|
||||||
</article>
|
</article>
|
|
@ -41,5 +41,8 @@ schema: show
|
||||||
{{ show.review | markdown }}
|
{{ show.review | markdown }}
|
||||||
<hr class="large-spacing" />
|
<hr class="large-spacing" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if show.description %}{{ show.description | markdown }}{% endif %}
|
{% if show.description %}
|
||||||
|
<h2>Overview</h2>
|
||||||
|
{{ show.description | markdown }}
|
||||||
|
{% endif %}
|
||||||
</article>
|
</article>
|
Reference in a new issue