no semicolons
This commit is contained in:
parent
320b777b99
commit
bf93638810
7 changed files with 528 additions and 134 deletions
|
@ -1,6 +1,6 @@
|
|||
const isDev = process.env.ELEVENTY_ENV === "development";
|
||||
|
||||
const baseUrl = isDev ? "localhost:8080" : "https://joshua.seigler.net/";
|
||||
const baseUrl = isDev ? "http://localhost:8080" : "https://joshua.seigler.net";
|
||||
|
||||
export default {
|
||||
title: "joshua.seigler.net",
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<a
|
||||
class="tag"
|
||||
style="--tagIndex:{{ collections.categories[tag].id }}"
|
||||
href="/tags/{{ tag | slugify }}"
|
||||
href="/tags/{{ tag | slugify }}/"
|
||||
>{{ tag }}</a>
|
||||
{%- endif %}
|
||||
{% endfor -%}
|
||||
|
|
|
@ -13,7 +13,6 @@ useTitle: true
|
|||
{%- if item.data.date -%}
|
||||
<aside>{{item.data.date | formatDate("MMMM DD, YYYY") }}</aside>
|
||||
{%- endif -%}
|
||||
<aside>Tags: {{ item.data.tags | join(", ") }}</aside>
|
||||
{{item.data.description | safe}}
|
||||
</li>
|
||||
{%- endfor -%}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue