forked from shadowfacts/shadowfacts.net
20 lines
651 B
Plaintext
20 lines
651 B
Plaintext
```
|
|
metadata.layout = "default.html.ejs"
|
|
```
|
|
|
|
<div class="main">
|
|
<article itemprop="blogPost" itemscope itemtype="https://schema.org/BlogPosting">
|
|
<meta itemprop="mainEntityOfPage" content="https://shadowfacts.net<%= metadata.permalink %>">
|
|
<h1 class="article-title" itemprop="name headline"><%= metadata.title %></h1>
|
|
<%- include("../includes/article-meta.html.ejs", { metadata }) %>
|
|
<div class="article-content" itemprop="articleBody">
|
|
<%- content %>
|
|
</div>
|
|
</article>
|
|
<section id="comments-container"></section>
|
|
</div>
|
|
|
|
<script>
|
|
const permalink = "<%= metadata.permalink %>";
|
|
</script>
|
|
<script src="/js/comments.js" async></script> |