85 lines
3.5 KiB
PHP
85 lines
3.5 KiB
PHP
<footer id="footer" class="site-footer card shadow-sm border-0">
|
|
<?php
|
|
echo get_option('argon_footer_html');
|
|
?>
|
|
<div>Theme <a href="https://github.com/solstice23/argon-theme" target="_blank"><strong>Argon</strong></a><?php if (get_option('argon_hide_footer_author') != 'true') {echo " By solstice23"; }?></div>
|
|
</footer>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
<script src="<?php echo $GLOBALS['assets_path']; ?>/argontheme.js?v<?php echo $GLOBALS['theme_version']; ?>"></script>
|
|
<?php if (get_option('argon_math_render') == 'mathjax3') { /*Mathjax V3*/?>
|
|
<script>
|
|
window.MathJax = {
|
|
tex: {
|
|
inlineMath: [["$", "$"], ["\\\\(", "\\\\)"]],
|
|
displayMath: [['$$','$$']],
|
|
processEscapes: true,
|
|
packages: {'[+]': ['noerrors']}
|
|
},
|
|
options: {
|
|
skipHtmlTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code'],
|
|
ignoreHtmlClass: 'tex2jax_ignore',
|
|
processHtmlClass: 'tex2jax_process'
|
|
},
|
|
loader: {
|
|
load: ['[tex]/noerrors']
|
|
}
|
|
};
|
|
</script>
|
|
<script src="<?php echo get_option('argon_mathjax_cdn_url') == '' ? '//cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml-full.js' : get_option('argon_mathjax_cdn_url'); ?>" id="MathJax-script" async></script>
|
|
<?php }?>
|
|
<?php if (get_option('argon_math_render') == 'mathjax2') { /*Mathjax V2*/?>
|
|
<script type="text/x-mathjax-config" id="mathjax_v2_script">
|
|
MathJax.Hub.Config({
|
|
messageStyle: "none",
|
|
tex2jax: {
|
|
inlineMath: [["$", "$"], ["\\\\(", "\\\\)"]],
|
|
displayMath: [['$$','$$']],
|
|
processEscapes: true,
|
|
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
|
|
},
|
|
menuSettings: {
|
|
zoom: "Hover",
|
|
zscale: "200%"
|
|
},
|
|
"HTML-CSS": {
|
|
showMathMenu: "false"
|
|
}
|
|
});
|
|
</script>
|
|
<script src="<?php echo get_option('argon_mathjax_v2_cdn_url') == '' ? '//cdn.jsdelivr.net/npm/mathjax@2.7.5/MathJax.js?config=TeX-AMS_HTML' : get_option('argon_mathjax_v2_cdn_url'); ?>"></script>
|
|
<?php }?>
|
|
<?php if (get_option('argon_math_render') == 'katex') { /*Katex*/?>
|
|
<link rel="stylesheet" href="<?php echo get_option('argon_katex_cdn_url') == '' ? '//cdn.jsdelivr.net/npm/katex@0.11.1/dist/' : get_option('argon_katex_cdn_url'); ?>katex.min.css">
|
|
<script src="<?php echo get_option('argon_katex_cdn_url') == '' ? '//cdn.jsdelivr.net/npm/katex@0.11.1/dist/' : get_option('argon_katex_cdn_url'); ?>katex.min.js"></script>
|
|
<script src="<?php echo get_option('argon_katex_cdn_url') == '' ? '//cdn.jsdelivr.net/npm/katex@0.11.1/dist/' : get_option('argon_katex_cdn_url'); ?>contrib/auto-render.min.js"></script>
|
|
<script>
|
|
document.addEventListener("DOMContentLoaded", function() {
|
|
renderMathInElement(document.body,{
|
|
delimiters: [
|
|
{left: "$$", right: "$$", display: true},
|
|
{left: "$", right: "$", display: false},
|
|
{left: "\\(", right: "\\)", display: false}
|
|
]
|
|
});
|
|
});
|
|
</script>
|
|
<?php }?>
|
|
|
|
<?php if (get_option('argon_enable_code_highlight') == 'true') { /*Highlight.js*/?>
|
|
<link rel="stylesheet" href="<?php echo $GLOBALS['assets_path']; ?>/assets/vendor/highlight/styles/<?php echo get_option('argon_code_theme') == '' ? 'vs2015' : get_option('argon_code_theme'); ?>.css">
|
|
<?php }?>
|
|
|
|
</div>
|
|
</div>
|
|
<?php
|
|
wp_enqueue_script("argonjs", $GLOBALS['assets_path'] . "/assets/js/argon.min.js", null, $GLOBALS['theme_version'], true);
|
|
?>
|
|
<?php wp_footer(); ?>
|
|
</body>
|
|
|
|
<?php echo get_option('argon_custom_html_foot'); ?>
|
|
|
|
</html>
|