mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-11 09:59:59 +08:00
17 lines
295 B
HTML
17 lines
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>
|