9 lines
281 B
PHP
9 lines
281 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
<h3>Story List</h3>
|
||
|
Select a Chapter from the list below to edit or delete it. You can also <a href="index.php?do=realms&fn=story&action=new"><img src="icons/world_add.png" alt="Add" align="top" /> add a new Chapter</a>.<br /><br />
|
||
|
{{storylist}}
|
||
|
END;
|
||
|
|
||
|
?>
|