knox revisó este gist . Ir a la revisión
1 file changed, 22 insertions
al-folio-readme-1.html(archivo creado)
@@ -0,0 +1,22 @@ | |||
1 | + | <!-- code for GitHub users --> | |
2 | + | {% if site.data.repositories.github_users %} | |
3 | + | <div class="repositories d-flex flex-wrap flex-md-row flex-column justify-content-between align-items-center"> | |
4 | + | {% for user in site.data.repositories.github_users %} {% include repository/repo_user.liquid username=user %} {% endfor %} | |
5 | + | </div> | |
6 | + | {% endif %} | |
7 | + | ||
8 | + | <!-- code for GitHub trophies --> | |
9 | + | {% if site.repo_trophies.enabled %} {% for user in site.data.repositories.github_users %} {% if site.data.repositories.github_users.size > 1 %} | |
10 | + | <h4>{{ user }}</h4> | |
11 | + | {% endif %} | |
12 | + | <div class="repositories d-flex flex-wrap flex-md-row flex-column justify-content-between align-items-center"> | |
13 | + | {% include repository/repo_trophies.liquid username=user %} | |
14 | + | </div> | |
15 | + | {% endfor %} {% endif %} | |
16 | + | ||
17 | + | <!-- code for GitHub repositories --> | |
18 | + | {% if site.data.repositories.github_repos %} | |
19 | + | <div class="repositories d-flex flex-wrap flex-md-row flex-column justify-content-between align-items-center"> | |
20 | + | {% for repo in site.data.repositories.github_repos %} {% include repository/repo.liquid repository=repo %} {% endfor %} | |
21 | + | </div> | |
22 | + | {% endif %} |
Siguiente
Anterior