github.com/swiftstack/ProxyFS@v0.0.0-20210203235616-4017c267d62f/docs/source/theme/swiftopensource/layout.html (about) 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/> 5 {% block header %}{% endblock %} 6 <title>ProxyFS File Access: {{ title }}</title> 7 <meta charset="utf-8"> 8 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 9 <meta name="viewport" content="width=device-width, initial-scale=1"> 10 {{ metatags }} 11 {% include 'css.html' %} 12 {%- for cssfile in css_files %} 13 <link rel="stylesheet" href="{{ pathto(cssfile, 1) }}" type="text/css" /> 14 {%- endfor %} 15 {# FAVICON #} 16 {% if favicon %} 17 <link rel="shortcut icon" href="{{ pathto('_static/favicon.ico') }}"/> 18 {% endif %} 19 {% if theme_analytics_tracking_code %} 20 <!-- Google Analytics --> 21 <script> 22 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ 23 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), 24 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) 25 })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); 26 27 ga('create', '{{ theme_analytics_tracking_code }}', 'auto'); 28 ga('send', 'pageview'); 29 </script> 30 <!-- End Google Analytics --> 31 {% endif %} 32 </head> 33 <body> 34 {% include 'header.html' %} 35 <div class="container docs-book-wrapper"> 36 <div class="row"> 37 <div class="col-lg-9 col-md-8 col-sm-8 col-lg-push-3 col-md-push-4 col-sm-push-4"> 38 {% include 'titlerow.html' %} 39 <div class="row"> 40 <div class="col-lg-12"> 41 <div class="docs-body"> 42 {% block body %}{% endblock %} 43 </div> 44 </div> 45 </div> 46 <div class="row"> 47 <div class="col-lg-8"> 48 </div> 49 <div class="docs-actions"> 50 {% if prev %} 51 <a href="{{ prev.link|e }}"><i class="fa fa-angle-double-left" data-toggle="tooltip" data-placement="top" title="Previous: {{ prev.title|striptags }}"></i></a> 52 {% endif %} 53 {% if next %} 54 <a href="{{ next.link|e }}"><i class="fa fa-angle-double-right" data-toggle="tooltip" data-placement="top" title="Next: {{ next.title|striptags }}"></i></a> 55 {% endif %} 56 </div> 57 </div> 58 </div> 59 {% include 'sidebartoc.html' %} 60 </div> 61 </div> 62 {% include 'footer.html' %} 63 {% include 'script_footer.html' %} 64 {% block script_footer %}{% endblock %} 65 </body> 66 </html>