layout.html 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  1. {%- block doctype -%}
  2. <!DOCTYPE html>
  3. {%- endblock %}
  4. {% set xxx = rellinks.extend([
  5. ('glossary', 'Glossary', 'g', 'Glossary'),
  6. ('contents', 'Table of Contents', 't', 'Table of Contents'),
  7. ]) %}
  8. {%- set reldelim1 = reldelim1 is not defined and ' &raquo;' or reldelim1 %}
  9. {%- set reldelim2 = reldelim2 is not defined and ' |' or reldelim2 %}
  10. {%- set render_sidebar = (not embedded) and (not theme_nosidebar|tobool) and (sidebars != []) %}
  11. {%- set url_root = pathto('', 1) %}
  12. {# XXX necessary? #}
  13. {%- if url_root == '#' %}{% set url_root = '' %}{% endif %}
  14. {%- if not embedded and docstitle %}
  15. {%- set titlesuffix = " &mdash; "|safe + docstitle|e %}
  16. {%- else %}
  17. {%- set titlesuffix = "" %}
  18. {%- endif %}
  19. {% set script_files = [
  20. '_static/js/core.min.js',
  21. '_static/js/webhelp.min_v1.4.4.js',
  22. ] %}
  23. {% set css_files = [
  24. '_static/css/core.min.css',
  25. '_static/css/webhelp.min_v1.4.5.css',
  26. ] %}
  27. {%- macro relbar() %}
  28. {%- for rellink in rellinks|reverse %}
  29. <li>
  30. <a href="{{ pathto(rellink[0]) }}" title="{{ rellink[1]|striptags|e }}">{{ rellink[3] }}</a>
  31. {#
  32. {%- if not loop.last %}{{ reldelim2 }}{% endif %}
  33. #}
  34. </li>
  35. {%- endfor %}
  36. {%- block relbaritems %} {% endblock %}
  37. {%- endmacro %}
  38. {%- macro script() %}
  39. <script>
  40. var DOCUMENTATION_OPTIONS = {
  41. URL_ROOT: '{{ url_root }}',
  42. VERSION: '{{ release|e }}',
  43. SEARCH_CX: '{{ search_cx }}',
  44. COLLAPSE_INDEX: false,
  45. FILE_SUFFIX: '{{ '' if no_search_suffix else file_suffix }}',
  46. HAS_SOURCE: '{{ has_source|lower }}',
  47. REPO_PRIMARY_BRANCH_TAB_NAME: '{{ repo_primary_branch | capitalize }}'
  48. };
  49. </script>
  50. {%- for scriptfile in script_files %}
  51. <script type="text/javascript" src="{{ pathto(scriptfile, 1) }}"></script>
  52. {%- endfor %}
  53. {%- endmacro %}
  54. {%- macro css() %}
  55. {%- for cssfile in css_files %}
  56. <link rel="stylesheet" href="{{ pathto(cssfile, 1) }}">
  57. {%- endfor %}
  58. {%- endmacro %}
  59. <html>
  60. <head>
  61. <!-- Google Tag Manager -->
  62. <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  63. new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  64. j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  65. 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  66. })(window,document,'script','dataLayer','GTM-MCK7VL3');</script>
  67. <!-- End Google Tag Manager -->
  68. <meta charset="{{ encoding }}">
  69. {{ metatags }}
  70. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  71. {%- block htmltitle %}
  72. <title>{{ title|striptags|e }}{{ titlesuffix }}</title>
  73. {%- endblock %}
  74. <meta name="description" content="">
  75. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  76. <meta name="google-site-verification" content="1Y-ojT3ndjxA9coB77iUDyXPWxeuQ3T4_r0j-QG6QHg" />
  77. {{ css() }}
  78. {%- if favicon %}
  79. <link rel="shortcut icon" href="{{ pathto('_static/' + favicon, 1) }}">
  80. {%- endif %}
  81. <!--[if lt IE 9]>
  82. <script type="text/javascript" src="{{ pathto('_static/js/respond.min.js', 1) }}"></script>
  83. <![endif]-->
  84. {%- block linktags %}
  85. {%- if hasdoc('about') %}
  86. <link rel="author" title="{{ _('About these documents') }}" href="{{ pathto('about') }}">
  87. {%- endif %}
  88. {%- if hasdoc('genindex') %}
  89. <link rel="index" title="{{ _('Index') }}" href="{{ pathto('genindex') }}">
  90. {%- endif %}
  91. {%- if hasdoc('search') %}
  92. <link rel="search" title="{{ _('Search') }}" href="{{ pathto('search') }}">
  93. {%- endif %}
  94. {%- if hasdoc('copyright') %}
  95. <link rel="copyright" title="{{ _('Copyright') }}" href="{{ pathto('copyright') }}">
  96. {%- endif %}
  97. <link rel="top" title="{{ docstitle|e }}" href="{{ pathto('index') }}">
  98. {%- if parents %}
  99. <link rel="up" title="{{ parents[-1].title|striptags|e }}" href="{{ parents[-1].link|e }}">
  100. {%- endif %}
  101. {%- if next %}
  102. <link rel="next" title="{{ next.title|striptags|e }}" href="{{ next.link|e }}">
  103. {%- endif %}
  104. {%- if prev %}
  105. <link rel="prev" title="{{ prev.title|striptags|e }}" href="{{ prev.link|e }}">
  106. {%- endif %}
  107. {%- endblock %}
  108. </head>
  109. <body class="index">
  110. <!-- Google Tag Manager (noscript) -->
  111. <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MCK7VL3"
  112. height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  113. <!-- End Google Tag Manager (noscript) -->
  114. <!--[if lt IE 8]>
  115. <p>You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser.</a></p>
  116. <![endif]-->
  117. {%- block content %}
  118. <div id="wrapper">
  119. <!--start navbar-->
  120. <nav id="globalNavbar" class="navbar navbar-default navbar-inverse navbar-fixed-top" role="navigation">
  121. <!-- Brand and toggle get grouped for better mobile display -->
  122. <div class="container">
  123. <div class="navbar-header">
  124. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbarCollapse">
  125. <span class="sr-only">Toggle navigation</span>
  126. <span class="icon-bar"></span>
  127. <span class="icon-bar"></span>
  128. <span class="icon-bar"></span>
  129. </button>
  130. <a href="http://saltstack.com/" target="_blank"><img src="{{ pathto('_static/images/SaltStack_white.svg', 1) }}" class="nolightbox" height="40px" width="170px"></a>
  131. </div>
  132. <!-- Collect the nav links, forms, and other content for toggling -->
  133. <div class="collapse navbar-collapse" id="navbarCollapse">
  134. <ul class="nav navbar-nav">
  135. <li><a href="/en/latest/">Overview</a></li>
  136. <li><a href="/en/getstarted/">Tutorials</a></li>
  137. <li><a href="/en/latest/contents.html">Documentation</a></li>
  138. <li><a href="https://repo.saltstack.com">Downloads</a></li>
  139. <li><a href="/en/latest/topics/development/">Develop</a></li>
  140. <!--<li><a href="/en/2016.3/faq/">FAQ</a></li>
  141. <li><a href="/en/2016.3/samples/">Code Samples</a></li>-->
  142. <!-- <li><a href="https://repo.saltstack.com" target="_blank">Downloads</a></li>-->
  143. <!--<li><a href="http://saltstack.com/training" target="_blank">Training</a></li>
  144. <li><a href="http://saltstack.com/support" target="_blank">Support</a></li>-->
  145. </ul>
  146. </div>
  147. </div>
  148. </nav>
  149. <!--end navbar-->
  150. <div id="page-content-wrapper">
  151. <div class="container-fluid">
  152. <!--start navbar-->
  153. <div class="row">
  154. <div class="col-sm-12 col-md-11 col-md-offset-1 col-lg-10 col-lg-offset-1">
  155. <nav class="pull-left text-muted">
  156. <a href="https://github.com/saltstack/salt/edit/{{ repo_primary_branch }}/doc/{{pagename}}.rst">Edit on GitHub</a>
  157. </nav>
  158. <nav id="localnav">
  159. <ul class="nav navbar-nav">
  160. {%- block relbar_small %}{{ relbar() }}{% endblock %}
  161. {% if not (build_type == repo_primary_branch or build_type == "next") and on_saltstack %}
  162. <li><a class="icon-dl" href="/en/pdf/Salt-{{ release }}.pdf"><img height="25" width="25" class="nolightbox" src="{{ pathto('_static/images/pdf_icon.svg', 1) }}"></a></li>
  163. <li><a class="icon-dl" href="/en/epub/Salt-{{ release }}.epub"><img height="25" width="18" class="nolightbox" src="{{ pathto('_static/images/epub_icon.svg', 1) }}"></a></li>
  164. {% elif build_type == repo_primary_branch and on_saltstack %}
  165. <li><a class="icon-dl" href="/en/pdf/Salt-{{ repo_primary_branch }}.pdf"><img height="25" width="25" class="nolightbox" src="{{ pathto('_static/images/pdf_icon.svg', 1) }}"></a></li>
  166. <li><a class="icon-dl" href="/en/epub/Salt-{{ repo_primary_branch }}.epub"><img height="25" width="18" class="nolightbox" src="{{ pathto('_static/images/epub_icon.svg', 1) }}"></a></li>
  167. {% endif %}
  168. </ul>
  169. </nav>
  170. </div>
  171. </div>
  172. <!--end navbar-->
  173. <div class="row">
  174. <div class="col-sm-12 col-md-11 col-md-offset-1 col-lg-10 col-lg-offset-1">
  175. {% if "topics/releases" in pagename and "0" in pagename and not release in pagename and not "In Progress" in title %}
  176. <div class="alert alert-warning dev-notification-text" role="alert"><i class="glyphicon glyphicon-warning-sign"></i> These release notes are for an old release of Salt. This release might contain known security and other issues that are fixed in the <a data-container="body" data-toggle="tooltip" data-placement="bottom" title="Release notes for the latest release" href="{{ release }}.html">latest release</a>.</div>
  177. {% elif build_type == repo_primary_branch and on_saltstack %}
  178. <div class="alert alert-warning dev-notification-text" role="alert"><i class="glyphicon glyphicon-warning-sign"></i> You are viewing docs from the {{ repo_primary_branch }} branch, some of these features are not yet released.</div>
  179. {% elif build_type == "inactive" and on_saltstack %}
  180. <div class="alert alert-warning dev-notification-text releaselinks" role="alert"><i class="glyphicon glyphicon-warning-sign"></i> You are viewing docs from a branch that is no longer active. You might want to view docs for the <a data-container="body" data-toggle="tooltip" data-placement="bottom" title="Docs for the latest stable release" href="/en/latest/">{{ latest_release }}</a> release instead.</div>
  181. {% endif %}
  182. {% if build_type == "next" and on_saltstack %}
  183. <div class="alert alert-warning dev-notification-text" role="alert"><i class="glyphicon glyphicon-warning-sign"></i> You are previewing docs for the next major release, <a target="_blank" data-container="body" data-toggle="tooltip" data-placement="bottom" title="View this branch on GitHub" href="https://github.com/saltstack/salt/tree/{{ next_release_dir }}"> {{ next_release }}.</a></div>
  184. {% endif %}
  185. {%- block document %}
  186. <div class="body-content">
  187. {% block body %} {% endblock %}
  188. </div>
  189. {%- endblock %}
  190. {%- if prev %}
  191. <a href="{{ prev.link|e }}"><button data-container="body" data-toggle="tooltip" data-placement="bottom" title="{{ prev.title|striptags|e }}" id="prev-button" type="button" class="btn btn-secondary"><span class="glyphicon glyphicon-chevron-left"></span> Previous</button></a>
  192. {%- endif %}
  193. {%- if next %}
  194. <a href="{{ next.link|e }}"><button data-container="body" data-toggle="tooltip" data-placement="bottom" title="{{ next.title|striptags|e }}" id="next-button" type="button" class="btn btn-primary">
  195. Next <span class="glyphicon glyphicon-chevron-right"></span></button></a>
  196. {%- endif %}
  197. </div>
  198. </div>
  199. {%- block footer %}
  200. <div class="footer">
  201. <hr />
  202. <div class="row">
  203. {% if on_saltstack %}
  204. <div class="col-sm-6">
  205. <p><i>{{ today }}</i></p>
  206. {% if build_type == "latest" %}
  207. <p>You are viewing docs for the latest stable release, {{ latest_release }}. Switch to docs for the previous stable release, <a data-container="body" data-toggle="tooltip" data-placement="bottom" title="Docs for the previous stable release" href="/en/{{ previous_release_dir }}/">{{ previous_release }}</a>, or to a recent doc build from the <a data-container="body" data-toggle="tooltip" data-placement="bottom" title="Latest docs from the {{ repo_primary_branch }} branch" href="/en/{{ repo_primary_branch }}/">{{ repo_primary_branch }}</a> branch.</p>
  208. {% elif build_type == "previous" %}
  209. <p>You are viewing docs for the previous stable release, {{ previous_release }}. Switch to docs for the latest stable release, <a data-container="body" data-toggle="tooltip" data-placement="bottom" title="Docs for the latest stable release" href="/en/latest/">{{ latest_release }}</a>, or to a recent doc build from the <a data-container="body" data-toggle="tooltip" data-placement="bottom" title="Latest docs from the {{ repo_primary_branch }} branch" href="/en/{{ repo_primary_branch }}/">{{ repo_primary_branch }}</a> branch.</p>
  210. {% elif build_type == "inactive" %}
  211. <p>You are viewing docs for an inactive release, {{ previous_release }}. Switch to docs for the latest stable release, <a data-container="body" data-toggle="tooltip" data-placement="bottom" title="Docs for the latest stable release" href="/en/latest/">{{ latest_release }}</a>, or to a recent doc build from the <a data-container="body" data-toggle="tooltip" data-placement="bottom" title="Latest docs from the {{ repo_primary_branch }} branch" href="/en/{{ repo_primary_branch }}/">{{ repo_primary_branch }}</a> branch.</p>
  212. {% elif build_type == repo_primary_branch %}
  213. <p>You are viewing docs built from a recent snapshot of the {{ repo_primary_branch }} branch. Switch to docs for the latest stable release, <a data-container="body" data-toggle="tooltip" data-placement="bottom" title="Docs for the latest stable release" href="/en/latest/">{{ latest_release }}</a>.</p>
  214. {% elif build_type == "next" %}
  215. <p>You are viewing preview docs for the next major release, {{ next_release }}. Switch to docs for the latest stable release, <a data-container="body" data-toggle="tooltip" data-placement="bottom" title="Docs for the latest stable release" href="/en/latest/">{{ latest_release }}</a>.</p>
  216. {% endif %}
  217. <br>
  218. <p><a href="http://saltstack.com">saltstack.com</a></p>
  219. <div class="footer">
  220. <p>© {{ copyright }} SaltStack. All Rights Reserved, SaltStack Inc. | <a href="http://saltstack.com/privacy-policy" target="_blank">Privacy Policy</a></p>
  221. </div>
  222. </div>
  223. <div class="col-sm-6">
  224. <!--
  225. <a href="https://saltstack.com/saltstack-enterprise/" target="_blank"><img class="nolightbox footer-banner center" src="{{ pathto('_static/images/enterprise_ad.jpg', 1) }}"/></a>
  226. -->
  227. <a href="https://saltconf.com/ad" target="_blank"><img class="nolightbox footer-banner center" src="https://get.saltstack.com/rs/304-PHQ-615/images/Salt-docs-ad-330x330.png"/></a>
  228. </div>
  229. {% endif %}
  230. </div>
  231. </div> <!--end footer-->
  232. {%- endblock %}
  233. </div>
  234. </div>
  235. <!--start sidebar-->
  236. <div id="sidebar-wrapper">
  237. <div id="sidebar-static">
  238. <!-- <a class="ss-logo" href="http://saltstack.com"><img width="250" height="63" class="nolightbox sidebar-logo" src="{{ pathto('_static/images/saltstack_logo.svg', 1) }}"></a>
  239. {% if on_saltstack %}
  240. {#
  241. {% if [True, False]|random %}
  242. <a href="http://saltconf.com/register" target="_blank"><img class="nolightbox sidebar-banner center" src="{{ pathto('_static/images/banner-saltconf.png', 1) }}"/></a>
  243. {% else %}
  244. <a href="http://saltstack.com/support" target="_blank"><img class="nolightbox sidebar-banner center" src="{{ pathto('_static/images/banner-support.png', 1) }}"/></a>
  245. {% endif %} #}-->
  246. <a href="https://saltconf.com/menu-ad" target="_blank"><img class="nolightbox sidebar-banner center" src="https://get.saltstack.com/rs/304-PHQ-615/images/Salt-docs-menu-ad-250x63.jpg"/></a>
  247. {% if build_type=="next" %}
  248. <div class="versions">
  249. <p><b>{{ next_release }}</b> (Not Released)</p>
  250. </div>
  251. {% else %}
  252. <div class="releaselinks versions {{ build_type }}">
  253. <a class="btn btn-secondary{% if build_type == "previous" or build_type == "inactive" %} active{% endif %}" id="previous"{% if build_type == "previous" or build_type == "inactive" %} title="View release notes"{% else %} title="Switch to docs for the previous stable release"{% endif %} data-container="body" data-toggle="tooltip" data-placement="bottom" href="/en/{{ previous_release_dir }}/">{{ previous_release }}{% if build_type == "previous" or build_type == "inactive" %} <i class="glyphicon glyphicon-ok"></i>{% endif %}</a>
  254. <a class="btn btn-secondary{% if build_type == "latest" %} active{% endif %}" id="latest"{% if build_type == "latest" %} title="View release notes"{% else %} title="Switch to docs for the latest stable release"{% endif %} data-container="body" data-toggle="tooltip" data-placement="bottom" href="/en/latest/">{{ latest_release }}{% if build_type == "latest" %} <i class="glyphicon glyphicon-ok"></i>{% endif %}</a>
  255. <a class="btn btn-secondary{% if build_type == repo_primary_branch %} active{% endif %}" id="{{ repo_primary_branch }}"{% if build_type == repo_primary_branch %} title="View all release notes"{% endif %} title="Switch to docs built recently from the {{ repo_primary_branch }} branch" data-container="body" data-toggle="tooltip" data-placement="bottom" href="/en/{{ repo_primary_branch }}/">{{ repo_primary_branch | capitalize }}{% if build_type == repo_primary_branch %} <i class="glyphicon glyphicon-ok"></i>{% endif %}</a>
  256. </div>
  257. {% endif %}
  258. {% else %}
  259. <div class="versions">
  260. <p>Version {{ version }}</p>
  261. </div>
  262. {% endif %}
  263. <div id="search-form" class="inner-addon left-addon">
  264. <i class="glyphicon glyphicon-search"></i>
  265. <input type="text" class="form-control">
  266. </div>
  267. </div> <!--end sidebar-static-->
  268. <div id="sidebar-nav">
  269. {% block menu %}
  270. {% set toctree = toctree(maxdepth=8, collapse=True, includehidden=True) %}
  271. {% if toctree %}
  272. {{ toctree }}
  273. {% else %}
  274. <!-- Local TOC -->
  275. <div class="local-toc">{{ toc }}</div>
  276. {% endif %}
  277. {% endblock %}
  278. </div>
  279. <div id="sidebar-static-bottom">
  280. <!--<div class="text-nowrap">
  281. &lt;!&ndash;social icons from http://vervex.deviantart.com/art/somacro-45-300dpi-social-media-icons-267955425&ndash;&gt;
  282. <ul id="social-links" class="list-inline">
  283. <li><a data-container="body" data-delay='{ "show": 500, "hide": 100 }' data-toggle="tooltip" data-placement="top" title="watch saltstack videos on youtube" href="https://www.youtube.com/user/saltstack" target="_blank"><img class="nolightbox" width="24" src="{{ pathto('_static/images/youtube-variation.png', 1) }}" ></a></li>
  284. <li><a data-container="body" data-delay='{ "show": 500, "hide": 100 }' data-toggle="tooltip" data-placement="top" title="view the latest saltstack tweets" href="http://twitter.com/saltstackinc" target="_blank"><img class="nolightbox" width="24" src="{{ pathto('_static/images/twitter.png', 1) }}" ></a></li>
  285. <li><a data-container="body" data-delay='{ "show": 500, "hide": 100 }' data-toggle="tooltip" data-placement="top" title="subscribe to the salt users mailing list" href="https://groups.google.com/forum/#!forum/salt-users" target="_blank"><img class="nolightbox" width="24" src="{{ pathto('_static/images/email.png', 1) }}" ></a></li>
  286. <li><a data-container="body" data-delay='{ "show": 500, "hide": 100 }' data-toggle="tooltip" data-placement="top" title="download saltstack code from github" href="https://github.com/saltstack/salt" target="_blank"><img class="nolightbox" width="24" src="{{ pathto('_static/images/github.png', 1) }}" ></a></li>
  287. <li><a data-container="body" data-delay='{ "show": 500, "hide": 100 }' data-toggle="tooltip" data-placement="top" title="chat in #salt on freenode irc" href="https://webchat.freenode.net/#salt" target="_blank"><img class="nolightbox" width="24" src="{{ pathto('_static/images/messenger-generic.png', 1) }}" ></a></li>
  288. <li><a data-container="body" data-delay='{ "show": 500, "hide": 100 }' data-toggle="tooltip" data-placement="top" title="/r/saltstack" href="http://www.reddit.com/r/saltstack/" target="_blank"><img class="nolightbox" width="24" src="{{ pathto('_static/images/reddit.png', 1) }}" ></a></li>
  289. <li><a data-container="body" data-delay='{ "show": 500, "hide": 100 }' data-toggle="tooltip" data-placement="top" title="ask a saltstack question on stackoverflow" href="http://stackoverflow.com/questions/tagged/salt-stack" target="_blank"><img class="nolightbox" width="24" src="{{ pathto('_static/images/stackoverflow.png', 1) }}" ></a></li>
  290. <li><a data-container="body" data-delay='{ "show": 500, "hide": 100 }' data-toggle="tooltip" data-placement="top" title="join or start a saltstack meetup" href="http://www.meetup.com/find/?keywords=saltstack" target="_blank"><img class="nolightbox" width="24" src="{{ pathto('_static/images/meetup.png', 1) }}" ></a></li>
  291. <li><a data-container="body" data-delay='{ "show": 500, "hide": 100 }' data-toggle="tooltip" data-placement="top" title="follow saltstack on linkedin" href="http://www.linkedin.com/company/salt-stack-inc" target="_blank"><img class="nolightbox" width="24" src="{{ pathto('_static/images/linkedin.png', 1) }}" ></a></li>
  292. </ul>
  293. </div>-->
  294. </div>
  295. </div>
  296. <!--end sidebar-->
  297. </div> <!--end wrapper-->
  298. {%- endblock %} <!--end block content-->
  299. {%- if not embedded %}
  300. {{ script() }}
  301. {%- if use_opensearch %}
  302. <link rel="search" type="application/opensearchdescription+xml"
  303. title="{% trans docstitle=docstitle|e %}Search within {{ docstitle }}{% endtrans %}"
  304. href="{{ pathto('_static/opensearch.xml', 1) }}">
  305. {%- endif %}
  306. {%- endif %}
  307. {% if on_saltstack %}
  308. <!--analytics-->
  309. <script type="text/javascript" language="javascript">llactid=23943</script>
  310. <script type="text/javascript" language="javascript" src="https://trackalyzer.com/trackalyze_secure.js"></script>
  311. {% endif %}
  312. </body>
  313. </html>