Skip to content

Commit

Permalink
Testing Jekyll
Browse files Browse the repository at this point in the history
  • Loading branch information
nilandev committed Oct 27, 2023
1 parent 175b080 commit 9eaee34
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 3 deletions.
4 changes: 4 additions & 0 deletions _data/members.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
name,github
Eric Mill,konklone
Parker Moore,parkr
Liu Fengyun,liufengyun
5 changes: 5 additions & 0 deletions _data/org/doeorg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
username: doeorg
name: Doe Org
members:
- name: John Doe
github: jdoe
8 changes: 8 additions & 0 deletions _data/org/jekyll.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
username: jekyll
name: Jekyll
members:
- name: Tom Preston-Werner
github: mojombo

- name: Parker Moore
github: parkr
19 changes: 16 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,25 @@ <h2 class="header-title">
<strong>Collections:</strong>
<div class="container">
<div class="index-left">
{% include components/finder.html %}

<ul>
{% for org_hash in site.data.orgs %}
{% assign org = org_hash[1] %}
<li>
<a href="https://github.com/{{ org.username }}">
{{ org.name }}
</a>
({{ org.members | size }} members)
</li>
{% endfor %}
</ul>

{% comment %} {% include components/finder.html %} {% endcomment %}
</div>
</div>
</main>
{% include sister.html %}
{% include modals/share.html %}
{% comment %} {% include sister.html %}
{% include modals/share.html %} {% endcomment %}
{% include google-fonts.html %}
<script src="{{site.url}}/javascript/clipboard.min.js"></script>
<script src="{{site.url}}/javascript/main.js"></script>
Expand Down

0 comments on commit 9eaee34

Please sign in to comment.