mirror of
https://github.com/maxboeck/webring
synced 2024-11-28 14:10:29 +00:00
add pull request template
This commit is contained in:
parent
0e497e14ba
commit
e10b0d9fbd
3 changed files with 22 additions and 10 deletions
17
.github/pull_request_template.md
vendored
Normal file
17
.github/pull_request_template.md
vendored
Normal 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
|
||||||
|
}
|
||||||
|
```
|
|
@ -2,25 +2,21 @@
|
||||||
{
|
{
|
||||||
"title": "Max Böck",
|
"title": "Max Böck",
|
||||||
"url": "https://mxb.dev/",
|
"url": "https://mxb.dev/",
|
||||||
"feed": "https://mxb.dev/feed.xml",
|
"feed": "https://mxb.dev/feed.xml"
|
||||||
"active": true
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title": "Test Site",
|
"title": "Test Site",
|
||||||
"url": "https://github.com/maxboeck/",
|
"url": "https://github.com/maxboeck/",
|
||||||
"feed": null,
|
"feed": null
|
||||||
"active": true
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title": "Manuel Matuzovic",
|
"title": "Manuel Matuzovic",
|
||||||
"url": "https://www.matuzo.at/",
|
"url": "https://www.matuzo.at/",
|
||||||
"feed": "https://www.matuzo.at/feed.xml",
|
"feed": "https://www.matuzo.at/feed.xml"
|
||||||
"active": true
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title": "Charlie Owen",
|
"title": "Charlie Owen",
|
||||||
"url": "https://www.sonniesedge.net/",
|
"url": "https://www.sonniesedge.net/",
|
||||||
"feed": null,
|
"feed": null
|
||||||
"active": true
|
|
||||||
}
|
}
|
||||||
]
|
]
|
|
@ -1,8 +1,7 @@
|
||||||
<ol class="memberlist">
|
<ol class="memberlist">
|
||||||
{% for member in members %}
|
{% for member in members %}
|
||||||
<li>
|
<li>
|
||||||
<strong>{{ member.title }}</strong><br />
|
<a href="{{ member.url }}">{{ member.title }}</a>
|
||||||
<a href="{{ member.url }}">{{ member.url }}</a>
|
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ol>
|
</ol>
|
Loading…
Reference in a new issue