19 lines
371 B
Markdown
19 lines
371 B
Markdown
---
|
|
# Feel free to add content and custom Front Matter to this file.
|
|
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
|
|
|
|
title: Codes
|
|
layout: home
|
|
permalink: /codes.html
|
|
---
|
|
|
|
Códigos disponíveis em nosso site:
|
|
|
|
{% for code in site.examples %}
|
|
<h2>
|
|
<a href="{{ code.url }}">
|
|
{{ code.name }}
|
|
</a>
|
|
</h2>
|
|
{% endfor %}
|