Skip to content

Commit

Permalink
Removed jekyll-theme external dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
axel committed Jun 16, 2024
1 parent c7cc242 commit 7a27634
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
10 changes: 7 additions & 3 deletions _layouts/repository.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
---
layout: page
title: Repositories-2
permalink: /repositories-2/
order: 15
description: >
Proof-of-concept and utility projects that i am hosting on Github.
---

{% for repo in site.github.public_repositories %}
{% if repo.fork == false and repo.topics.size > 0 %}
{% include repository.html repo=repo %}
{% include project-display.html repo=repo %}
{% endif %}
{% endfor %}
{% endfor %}
5 changes: 5 additions & 0 deletions repos.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,8 @@ order: 6
description: >
Proof-of-concept and utility repositories that i am hosting on Github.
---
{% for repo in site.github.public_repositories %}
{% if repo.fork == false and repo.topics.size > 0 %}
{% include project-display.html repo=repo %}
{% endif %}
{% endfor %}

0 comments on commit 7a27634

Please sign in to comment.