Add publication.
Deploy / Deploy (push) Successful in 2m21s Details

This commit is contained in:
emerson 2024-08-09 00:42:00 -03:00
parent 49204100f5
commit ef9b2145fd
3 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<div class="publication">
<div class="pub-header">
<h1 class="">Publicações</h1>
<input class="input" style="width:400px" type="text" id="inputSearch" onkeyup="searchArticle();" placeholder="Digite o que você procura">
</div>
<br>
<div id="article" class="">
{% bibliography -q @*[year >= {{2015}}]* %}
<h1 class="title is-bold">Pré ALICE</h1>
{% bibliography -q @*[year <= {{2014}}]* %}
</div>
</div>

View File

@ -267,3 +267,39 @@ h1, h2, h3, h4, h5, h6 {
}
/* ================================================================================================================================== */
/* PUBLICATION */
.publication{
margin: 5%;
background-color: var(--ivory);
}
.publication .pub-header{
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 25px;
}
.publication .pub-header h1{
font-size: 28px;
font-family: var(--font-family);
font-weight: 900;
color: var(--charcoal-blue);
}
.publication #article .bibliography{
margin: 25px;
color: var(--charcoal-blue);
}
.publication #article h2{
font-size: 36px;
font-family: var(--font-family);
font-weight: 900;
color: var(--charcoal-blue);
}

9
publications.md Executable file
View File

@ -0,0 +1,9 @@
---
layout: default
title: Publicações
layoutTipe: atual
displaymenu: true
lang: pt
---
{% include pages/publications.html %}