Exclude the .github directory in the projects listing

This commit is contained in:
R Tyler Croy 2020-12-04 10:35:33 -08:00
parent b9c938d91c
commit 7aba5c05cf
No known key found for this signature in database
GPG Key ID: E5C92681BEF6CEA2
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<ul class="card-grid">
{% assign public_repositories = site.github.public_repositories | where:'archived', false | where:'fork', false | where_exp: 'repo', "repo.name != 'scribd.github.io'" | sort: 'pushed_at' | reverse %}
{% assign public_repositories = site.github.public_repositories | where:'archived', false | where:'fork', false | where_exp: 'repo', "repo.name != 'scribd.github.io'" | where_exp: 'repo', "repo.name != '.github'" | sort: 'pushed_at' | reverse %}
<!-- Assign an optional limit to be passed through -->
{% for repository in public_repositories limit: {{include.limit}} %}