Skip to content

Commit 147599d

Browse files
Agregar página de comunidad
1 parent dc26d4e commit 147599d

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

_includes/page-header.html

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<li><a href="/series/">Series</a></li>
1515
<li><a href="/category/como-lo-hago.html">Cómo lo hago</a></li>
1616
<li><a href="/category/articulos/noticias.html">Noticias</a></li>
17+
<li><a href="/community.html">Comunidad</a></li>
1718
<li class="hidden-xs"><a href="/search.html"><i class="fa fa-search"></i></a></li>
1819
<li class="visible-xs"><a href="/search.html"><i class="fa fa-search"></i> Buscar</a></li>
1920
</ul>

comunidad.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
layout: default
3+
title: Comunidad
4+
permalink: community.html
5+
description: Página de los aportes de la comunidad, aquí encontraras las entradas que han sido escritas por los contribuidores de Codehero.
6+
---
7+
<div class="row">
8+
<div class="contenido-fondo-blanco col-xs-12 col-sm-9 col-md-9">
9+
{% for post in site.posts %}
10+
{% if post.categories contains 'comunidad' %}
11+
{% include article-section.html %}
12+
{% endif %}
13+
{% endfor %}
14+
</div>
15+
{% include ads-section.html %}
16+
</div>

0 commit comments

Comments
 (0)