mirror of
https://github.com/MAGICGrants/MoneroFund.org.git
synced 2026-01-08 23:37:57 -05:00
31 lines
867 B
HTML
31 lines
867 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
<main>
|
|
{% include header.html %}
|
|
|
|
<section class="blog-section">
|
|
<div class="container post-wrap">
|
|
<div class="row">
|
|
<div class="col post-page">
|
|
{%if post.img%}
|
|
<img src="{{post.img}}" alt="{{post.alt}}">
|
|
{%endif%}
|
|
<p class="post-date">{{page.date | date: '%B %d, %Y'}}</p>
|
|
<h1>{{page.title}}</h1>
|
|
<div class="post-body">
|
|
<img src="{{page.img}}" alt="{{page.alt}}">
|
|
{{content}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% include footer.html %}
|
|
</main>
|
|
</body>
|
|
</html>
|