AliceClass/pages/software.html

26 lines
717 B
HTML
Raw Permalink Normal View History

2024-05-23 01:23:48 -03:00
---
layout: default
2024-08-05 21:54:00 -03:00
permalink: /software/
2024-05-23 01:23:48 -03:00
lang: pt
---
<div class="is-flex is-flex-direction-row mt-6 mx-6 ">
<h1 class="title is-flex-grow-1">Software</h1>
<button class="button is-link" id="NovoPodcast">Cadastrar software</button>
</div>
<div class="mx-6 mt-6">
<div id="archives">
<div class="archive-group is-flex is-justify-content-center">
{% for software in site.software %}
{% assign name = software.name | replace: ".md", "" %}
<a href='{{ site.baseurl }}{{ software.url }}.html' class="mx-2" >
<div class="tags are-large">
<h1 class="title is-size-4 tag is-link">{{ name }}</h1>
</div>
</a>
{% endfor %}
</div>
</div>
</div>