mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-11-10 17:26:10 +08:00
17 lines
No EOL
295 B
HTML
17 lines
No EOL
295 B
HTML
---
|
|
layout: default
|
|
---
|
|
<h1> Service providers </h1>
|
|
|
|
<table class='table table-bordered'>
|
|
<thead>
|
|
<th>Name</th>
|
|
<th>Javascript Identifier</th>
|
|
</thead>
|
|
{% for p in site.providers %}
|
|
<tr>
|
|
<td><a href=".{{p.id}}">{{p.name}}</a></td>
|
|
<td>{{p.jsId}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table> |