28 lines
735 B
HTML
28 lines
735 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
{% include head.html %}
|
||
|
|
||
|
<body>
|
||
|
<main>
|
||
|
{% include header.html %}
|
||
|
|
||
|
<section class="blog-section guide-section">
|
||
|
<div class="container">
|
||
|
<div class="row">
|
||
|
<div class="col post-page">
|
||
|
<h1>{{page.title}}</h1>
|
||
|
<p class="p-summary">{{ page.summary }}</p>
|
||
|
<div class="post-body">
|
||
|
<img src="{{page.img}}" alt="{{page.alt}}">
|
||
|
{{content}}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
{% include footer.html %}
|
||
|
</main>
|
||
|
</body>
|
||
|
</html>
|