Skip to content

Commit

Permalink
add pull request template
Browse files Browse the repository at this point in the history
  • Loading branch information
maxboeck committed Apr 13, 2019
1 parent 0e497e1 commit e10b0d9
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 10 deletions.
17 changes: 17 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## Adding your site

To add a new site to the webring, please supply the following information:

* Name of your site
* URL of your site
* URL of your RSS feed (optional)

Example:

```json
{
"title": "Frank's awesome site",
"url": "https://www.franks-awesome-site.org",
"feed": null
}
```
12 changes: 4 additions & 8 deletions src/data/members.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,21 @@
{
"title": "Max Böck",
"url": "https://mxb.dev/",
"feed": "https://mxb.dev/feed.xml",
"active": true
"feed": "https://mxb.dev/feed.xml"
},
{
"title": "Test Site",
"url": "https://github.com/maxboeck/",
"feed": null,
"active": true
"feed": null
},
{
"title": "Manuel Matuzovic",
"url": "https://www.matuzo.at/",
"feed": "https://www.matuzo.at/feed.xml",
"active": true
"feed": "https://www.matuzo.at/feed.xml"
},
{
"title": "Charlie Owen",
"url": "https://www.sonniesedge.net/",
"feed": null,
"active": true
"feed": null
}
]
3 changes: 1 addition & 2 deletions src/includes/memberlist.njk
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<ol class="memberlist">
{% for member in members %}
<li>
<strong>{{ member.title }}</strong><br />
<a href="{{ member.url }}">{{ member.url }}</a>
<a href="{{ member.url }}">{{ member.title }}</a>
</li>
{% endfor %}
</ol>

0 comments on commit e10b0d9

Please sign in to comment.