mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-02 20:45:29 +02:00
Extracted common template code for prosilver as per subsilver2. Various other fixups and oversight corrections, changed name of the "new" template function and re-introduced existing version. Altered on_page to compensate for removal of some templating vars from pagination routine. PHPBB3-10968
28 lines
848 B
HTML
28 lines
848 B
HTML
<!-- INCLUDE simple_header.html -->
|
|
|
|
<script type="text/javascript">
|
|
// <![CDATA[
|
|
var form_name = 'postform';
|
|
var text_name = 'message';
|
|
// ]]>
|
|
</script>
|
|
<script type="text/javascript" src="{T_SUPER_TEMPLATE_PATH}/editor.js"></script>
|
|
|
|
<h2>{L_SMILIES}</h2>
|
|
<div class="panel">
|
|
<div class="inner">
|
|
<!-- BEGIN smiley -->
|
|
<a href="#" onclick="initInsertions(); insert_text('{smiley.A_SMILEY_CODE}', true, true); return false;"><img src="{smiley.SMILEY_IMG}" width="{smiley.SMILEY_WIDTH}" height="{smiley.SMILEY_HEIGHT}" alt="{smiley.SMILEY_CODE}" title="{smiley.SMILEY_DESC}" /></a>
|
|
<!-- END smiley -->
|
|
|
|
</div>
|
|
</div>
|
|
<div class="pagination">
|
|
<!-- IF .pagination -->
|
|
<!-- INCLUDE pagination.html -->
|
|
<!-- ENDIF -->
|
|
</div>
|
|
<a href="#" onclick="window.close(); return false;">{L_CLOSE_WINDOW}</a>
|
|
|
|
<!-- INCLUDE simple_footer.html -->
|