Beispiel #1
0
function template_html_below()
{
    // load in any javascipt that could be defered to the end of the page
    template_javascript(true);
    echo '
</body>
</html>';
}
Beispiel #2
0
function template_html_below()
{
    global $context, $settings, $options, $scripturl, $txt, $modSettings;
    // load in any javascipt that could be defered to the end of the page
    template_javascript(true);
    echo '
</body>
</html>';
}
Beispiel #3
0
/**
 * Section down the page, at closing html tag
 */
function template_html_below()
{
    global $context;
    echo '
		</div>
	</div>';
    // load in any javascript that could be deferred to the end of the page
    template_javascript(true);
    // Anything special to put out?
    if (!empty($context['insert_after_template'])) {
        echo $context['insert_after_template'];
    }
    echo '
</body>
</html>';
}
/**
* The sub template below the content.
*/
function template_fronthtml_below()
{
    global $context, $scripturl, $txt, $modSettings;
    echo '
			<div id="footer_section">
				<div class="frame">';
    // There is now a global "Go to top" link at the right.
    echo '
					<ul class="floatright">
						<li><a href="', $scripturl, '?action=help">', $txt['help'], '</a> ', !empty($modSettings['requireAgreement']) ? '| <a href="' . $scripturl . '?action=help;sa=rules">' . $txt['terms_and_rules'] . '</a>' : '', ' | <a href="#top_section">', $txt['go_up'], ' &#9650;</a></li>
					</ul>
					<ul class="reset">
						<li class="copyright">', theme_copyright(), '</li>
					</ul>';
    // Show the load time?
    if ($context['show_load_time']) {
        echo '
					<p>', sprintf($txt['page_created_full'], $context['load_time'], $context['load_queries']), '</p>';
    }
    echo '
				</div>
			</div>
		</div>
	</div>';
    // load in any javascipt that could be defered to the end of the page
    template_javascript(true);
    echo '
</body>
</html>';
}