52 lines
1.9 KiB
Twig
52 lines
1.9 KiB
Twig
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Reference Editor</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<select id='references' onchange='retrieveReference(this)'>
|
||
|
<option value=''>-- Select Reference --</option>
|
||
|
<optgroup id='creeds' label='Creeds'>
|
||
|
{% for c in creeds %}
|
||
|
<option type='creed'>{{ c }}</option>
|
||
|
{% endfor %}
|
||
|
</optgroup>
|
||
|
<optgroup id='belgic' label='Belgic Confession'>
|
||
|
{% for c in belgic %}
|
||
|
<option type='bc'>{{ c }}</option>
|
||
|
{% endfor %}
|
||
|
</optgroup>
|
||
|
<optgroup id='heidelberg' label='Heidelberg Catechism'>
|
||
|
{% for c in heidelberg %}
|
||
|
<option type='hc'>{{ c }}</option>
|
||
|
{% endfor %}
|
||
|
</optgroup>
|
||
|
<optgroup id='dort' label='Canons of Dort'>
|
||
|
{% for c in dort %}
|
||
|
<option type='cd'>{{ c }}</option>
|
||
|
{% endfor %}
|
||
|
</optgroup>
|
||
|
<optgroup id='wcf' label='Westminster Confession of Faith'>
|
||
|
{% for c in wcf %}
|
||
|
<option type='wcf'>{{ c }}</option>
|
||
|
{% endfor %}
|
||
|
</optgroup>
|
||
|
<optgroup id='wsc' label='Westminster Short Catechism'>
|
||
|
{% for c in wsc %}
|
||
|
<option type='wsc'>{{ c }}</option>
|
||
|
{% endfor %}
|
||
|
</optgroup>
|
||
|
<optgroup id='wlc' label='Westminster Larger Catechism'>
|
||
|
{% for c in wlc %}
|
||
|
<option type='wlc'>{{ c }}</option>
|
||
|
{% endfor %}
|
||
|
</optgroup>
|
||
|
</select>
|
||
|
<button id='save' name='save' onclick='saveReference()'>Save</button>
|
||
|
<a href='/index.php/home'>Back</a><br />
|
||
|
|
||
|
<textarea id='reference' name='reference' rows=45 cols=100></textarea>
|
||
|
<script src='/js/script.js'></script>
|
||
|
</body>
|
||
|
</html>
|