24 lines
741 B
HTML
Executable File
24 lines
741 B
HTML
Executable File
---
|
|
layout: default
|
|
lang: pt
|
|
---
|
|
<div class="is-flex">
|
|
<div class="is-flex-grow-5 is-flex is-flex-direction-column" >
|
|
{% include TopBar.html %}
|
|
<main class="mt-6">
|
|
<h1 class="author-title">Detalhes do Autor</h1>
|
|
<div class="is-flex is-flex-direction-row author-container">
|
|
{% assign author_slug = page.name | replace: '.md', '' %}
|
|
{% assign imagem_author = 'autores/' | append: author_slug | append: '.jpg' %}
|
|
<img src="{{ site.baseurl }}/{{ imagem_author }}" alt="Imagem do Autor" class="author-img">
|
|
|
|
<div class="author-info mx-6">
|
|
<h2 class="user-title">{{ page.title }}</h2>
|
|
<p class="user-details">{{ page.content }}</p>
|
|
</div>
|
|
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</div>
|