25 lines
574 B
Plaintext
25 lines
574 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<!-- Head tag -->
|
|
<%- partial('_partial/head') %>
|
|
|
|
<!-- hack iOS CSS :active style -->
|
|
<body ontouchstart="">
|
|
<%- partial('_partial/header',{cache: true}) %>
|
|
|
|
<%- partial('_partial/nav',{cache: true}) %>
|
|
|
|
<!-- Main Content -->
|
|
<%- body %>
|
|
|
|
<!-- Footer -->
|
|
<%- partial('_partial/footer') %>
|
|
|
|
<a id="backtotop" href="#top" class=""></a>
|
|
<script type="text/javascript" src="/js/totop.js?v=1.0.0" async=""></script>
|
|
<script type="text/javascript" src="/js/toc.js?v=1.0.0" async=""></script>
|
|
</body>
|
|
|
|
</html>
|