default.html 621 B

1234567891011121314151617181920212223242526272829303132
  1. ---
  2. ---
  3. <!doctype html>
  4. <html lang="en">
  5. <head>
  6. <meta charset="UTF-8">
  7. <meta name="viewport"
  8. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  9. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  10. <link rel="stylesheet" href="{{ site.baseurl }}/style.css">
  11. <title>Tabler Icons</title>
  12. <script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"></script>
  13. <style>
  14. body {
  15. display: none;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. {{ content }}
  21. <script>
  22. $(document).ready(function(){
  23. document.body.style.display = "block";
  24. });
  25. </script>
  26. </body>
  27. </html>