add pull request template

This commit is contained in:
Max Böck 2019-04-13 20:28:47 +02:00
parent 0e497e14ba
commit e10b0d9fbd
3 changed files with 22 additions and 10 deletions

17
.github/pull_request_template.md vendored Normal file
View file

@ -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
}
```

View file

@ -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
}
]

View file

@ -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>