mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 17:33:54 +00:00
28 lines
1005 B
HTML
28 lines
1005 B
HTML
{% extends "!page.html" %}
|
|
|
|
{%- block rootrellink %}
|
|
<li><a href="http://saltstack.org">« SaltStack.org</a> | </li>
|
|
<li><a href="{{ pathto('index') }}">Documentation home</a></li>
|
|
{%- endblock %}
|
|
|
|
{% block body %}
|
|
{{ super() }}
|
|
<h2>Comments</h2>
|
|
<div id="disqus_thread"></div>
|
|
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
|
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
|
{% endblock %}
|
|
|
|
{% block footer %}
|
|
{{ super() }}
|
|
<script type="text/javascript">
|
|
var disqus_shortname = 'saltstack';
|
|
|
|
(function() {
|
|
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
|
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
|
|
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
|
})();
|
|
</script>
|
|
{% endblock %}
|