mirror of
https://github.com/maxboeck/webring
synced 2024-11-10 05:54:17 +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",
|
||||
"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
|
||||
}
|
||||
]
|
|
@ -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>
|
Loading…
Reference in a new issue