2015-05-19 13:36:57 -06:00
{%- block doctype -%}
<!DOCTYPE html>
{%- endblock %}
2023-08-25 19:12:20 -04:00
{%- set link_text = [] %}
{%- for link_tuple in rellinks %}
2023-08-29 10:13:34 -04:00
{%- set _ = link_text.append(link_tuple[3]) %}
2023-08-25 19:12:20 -04:00
{%- endfor %}
{%- for rellink_add in [
2015-05-19 13:36:57 -06:00
('glossary', 'Glossary', 'g', 'Glossary'),
('contents', 'Table of Contents', 't', 'Table of Contents'),
2023-08-25 19:12:20 -04:00
] %}
2023-08-29 10:13:34 -04:00
{%- if rellink_add[3] not in link_text %}{% set _ = rellinks.append(rellink_add) %}{% endif %}
2023-08-25 19:12:20 -04:00
{%- endfor %}
2015-05-19 13:36:57 -06:00
{%- set reldelim1 = reldelim1 is not defined and ' » ' or reldelim1 %}
{%- set reldelim2 = reldelim2 is not defined and ' |' or reldelim2 %}
{%- set render_sidebar = (not embedded) and (not theme_nosidebar|tobool) and (sidebars != []) %}
{%- set url_root = pathto('', 1) %}
{# XXX necessary? #}
{%- if url_root == '#' %}{% set url_root = '' %}{% endif %}
{%- if not embedded and docstitle %}
{%- set titlesuffix = " — "|safe + docstitle|e %}
{%- else %}
{%- set titlesuffix = "" %}
{%- endif %}
{% set script_files = [
2015-07-10 09:52:01 -06:00
'_static/js/core.min.js',
2016-05-25 17:39:55 -06:00
'_static/js/webhelp.min_v1.4.4.js',
2015-05-19 13:36:57 -06:00
] %}
{% set css_files = [
2015-07-10 09:52:01 -06:00
'_static/css/core.min.css',
2016-05-25 17:39:55 -06:00
'_static/css/webhelp.min_v1.4.5.css',
2015-05-19 13:36:57 -06:00
] %}
{%- macro relbar() %}
{%- for rellink in rellinks|reverse %}
< li >
< a href = "{{ pathto(rellink[0]) }}" title = "{{ rellink[1]|striptags|e }}" > {{ rellink[3] }}< / a >
{#
{%- if not loop.last %}{{ reldelim2 }}{% endif %}
#}
< / li >
{%- endfor %}
{%- block relbaritems %} {% endblock %}
{%- endmacro %}
{%- macro script() %}
< script >
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '{{ url_root }}',
VERSION: '{{ release|e }}',
2015-07-10 09:52:01 -06:00
SEARCH_CX: '{{ search_cx }}',
2015-05-19 13:36:57 -06:00
COLLAPSE_INDEX: false,
FILE_SUFFIX: '{{ '' if no_search_suffix else file_suffix }}',
2019-10-28 11:32:09 -06:00
HAS_SOURCE: '{{ has_source|lower }}',
REPO_PRIMARY_BRANCH_TAB_NAME: '{{ repo_primary_branch | capitalize }}'
2015-05-19 13:36:57 -06:00
};
< / script >
{%- for scriptfile in script_files %}
2019-04-25 11:53:09 +02:00
< script type = "text/javascript" src = "{{ pathto(scriptfile, 1) }}" > < / script >
2015-05-19 13:36:57 -06:00
{%- endfor %}
{%- endmacro %}
{%- macro css() %}
{%- for cssfile in css_files %}
2015-07-10 09:52:01 -06:00
< link rel = "stylesheet" href = "{{ pathto(cssfile, 1) }}" >
2015-05-19 13:36:57 -06:00
{%- endfor %}
{%- endmacro %}
< html >
< head >
2019-01-16 15:30:45 -05:00
<!-- Google Tag Manager -->
< script > ( f u n c t i o n ( w , d , s , l , i ) { w [ l ] = w [ l ] | | [ ] ; w [ l ] . p u s h ( { ' g t m . s t a r t ' :
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:''; j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-MCK7VL3');< / script >
<!-- End Google Tag Manager -->
2015-05-19 13:36:57 -06:00
< meta charset = "{{ encoding }}" >
{{ metatags }}
< meta http-equiv = "X-UA-Compatible" content = "IE=edge,chrome=1" >
{%- block htmltitle %}
< title > {{ title|striptags|e }}{{ titlesuffix }}< / title >
{%- endblock %}
< meta name = "description" content = "" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< meta name = "google-site-verification" content = "1Y-ojT3ndjxA9coB77iUDyXPWxeuQ3T4_r0j-QG6QHg" / >
{{ css() }}
2015-07-10 09:52:01 -06:00
{%- if favicon %}
2015-05-19 13:36:57 -06:00
< link rel = "shortcut icon" href = "{{ pathto('_static/' + favicon, 1) }}" >
{%- endif %}
2015-07-10 09:52:01 -06:00
<!-- [if lt IE 9]>
2019-04-25 11:53:09 +02:00
< script type = "text/javascript" src = "{{ pathto('_static/js/respond.min.js', 1) }}" > < / script >
2015-07-10 09:52:01 -06:00
<![endif]-->
2015-05-19 13:36:57 -06:00
{%- block linktags %}
{%- if hasdoc('about') %}
< link rel = "author" title = "{{ _('About these documents') }}" href = "{{ pathto('about') }}" >
{%- endif %}
{%- if hasdoc('genindex') %}
< link rel = "index" title = "{{ _('Index') }}" href = "{{ pathto('genindex') }}" >
{%- endif %}
{%- if hasdoc('search') %}
< link rel = "search" title = "{{ _('Search') }}" href = "{{ pathto('search') }}" >
{%- endif %}
{%- if hasdoc('copyright') %}
< link rel = "copyright" title = "{{ _('Copyright') }}" href = "{{ pathto('copyright') }}" >
{%- endif %}
< link rel = "top" title = "{{ docstitle|e }}" href = "{{ pathto('index') }}" >
{%- if parents %}
< link rel = "up" title = "{{ parents[-1].title|striptags|e }}" href = "{{ parents[-1].link|e }}" >
{%- endif %}
{%- if next %}
< link rel = "next" title = "{{ next.title|striptags|e }}" href = "{{ next.link|e }}" >
{%- endif %}
{%- if prev %}
< link rel = "prev" title = "{{ prev.title|striptags|e }}" href = "{{ prev.link|e }}" >
{%- endif %}
{%- endblock %}
< / head >
< body class = "index" >
2019-01-16 15:30:45 -05:00
<!-- Google Tag Manager (noscript) -->
< noscript > < iframe src = "https://www.googletagmanager.com/ns.html?id=GTM-MCK7VL3"
height="0" width="0" style="display:none;visibility:hidden">< / iframe > < / noscript >
<!-- End Google Tag Manager (noscript) -->
2015-05-19 13:36:57 -06:00
<!-- [if lt IE 8]>
< p > You are using an < strong > outdated< / strong > browser. Please < a href = "http://browsehappy.com/" > upgrade your browser.< / a > < / p >
<![endif]-->
{%- block content %}
2016-05-25 17:39:55 -06:00
2015-05-19 13:36:57 -06:00
< div id = "wrapper" >
2016-05-25 17:39:55 -06:00
<!-- start navbar -->
< nav id = "globalNavbar" class = "navbar navbar-default navbar-inverse navbar-fixed-top" role = "navigation" >
<!-- Brand and toggle get grouped for better mobile display -->
< div class = "container" >
< div class = "navbar-header" >
< button type = "button" class = "navbar-toggle" data-toggle = "collapse" data-target = "#navbarCollapse" >
< span class = "sr-only" > Toggle navigation< / span >
< span class = "icon-bar" > < / span >
< span class = "icon-bar" > < / span >
< span class = "icon-bar" > < / span >
< / button >
2023-05-10 14:02:43 -05:00
< a href = "https://saltproject.io/" target = "_blank" > < img src = "https://gitlab.com/saltstack/open/salt-branding-guide/-/raw/master/logos/SaltProject_altlogo_teal.png" class = "nolightbox" height = "44.5px" width = "125px" > < / a >
2016-05-25 17:39:55 -06:00
< / div >
<!-- Collect the nav links, forms, and other content for toggling -->
< div class = "collapse navbar-collapse" id = "navbarCollapse" >
< ul class = "nav navbar-nav" >
2024-10-31 09:52:00 -06:00
< li > < a href = "/en/latest/" > Overview< / a > < / li >
< li > < a href = "https://docs.saltproject.io/salt/user-guide/en/latest/" > Salt User Guide< / a > < / li >
< li > < a href = "/en/latest/contents.html" > Documentation< / a > < / li >
< li > < a href = "https://packages.broadcom.com/artifactory/saltproject-generic/" > Downloads< / a > < / li >
< li > < a href = "/en/latest/topics/development/" > Develop< / a > < / li >
2016-05-25 17:39:55 -06:00
< / ul >
< / div >
< / div >
< / nav >
<!-- end navbar -->
2015-05-19 13:36:57 -06:00
< div id = "page-content-wrapper" >
< div class = "container-fluid" >
2016-05-25 17:39:55 -06:00
<!-- start navbar -->
2015-05-19 13:36:57 -06:00
< div class = "row" >
< div class = "col-sm-12 col-md-11 col-md-offset-1 col-lg-10 col-lg-offset-1" >
2017-03-01 00:34:22 -05:00
< nav class = "pull-left text-muted" >
2019-10-25 18:27:55 +01:00
< a href = "https://github.com/saltstack/salt/edit/{{ repo_primary_branch }}/doc/{{pagename}}.rst" > Edit on GitHub< / a >
2017-03-01 00:34:22 -05:00
< / nav >
2016-05-25 17:39:55 -06:00
< nav id = "localnav" >
< ul class = "nav navbar-nav" >
{%- block relbar_small %}{{ relbar() }}{% endblock %}
2019-10-28 11:21:27 -06:00
{% if not (build_type == repo_primary_branch or build_type == "next") and on_saltstack %}
2016-05-25 17:39:55 -06:00
< 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 >
2019-10-28 11:57:15 -06:00
{% elif build_type == repo_primary_branch and on_saltstack %}
< 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 >
2016-05-25 17:39:55 -06:00
{% endif %}
< / ul >
2015-05-19 13:36:57 -06:00
< / nav >
2016-05-25 17:39:55 -06:00
< / div >
< / div >
<!-- end navbar -->
< div class = "row" >
< div class = "col-sm-12 col-md-11 col-md-offset-1 col-lg-10 col-lg-offset-1" >
2015-05-19 13:36:57 -06:00
2016-03-29 06:38:04 -06:00
{% if "topics/releases" in pagename and "0" in pagename and not release in pagename and not "In Progress" in title %}
2016-05-25 17:39:55 -06:00
2016-03-29 06:38:04 -06:00
< 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 >
2019-10-25 18:27:55 +01:00
{% elif build_type == repo_primary_branch and on_saltstack %}
2016-05-25 17:39:55 -06:00
2019-10-25 18:27:55 +01:00
< 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 >
2015-07-10 09:52:01 -06:00
2016-03-29 06:38:04 -06:00
{% elif build_type == "inactive" and on_saltstack %}
2016-05-25 17:39:55 -06:00
2016-03-29 06:38:04 -06:00
< 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 >
2015-09-14 15:17:59 -06:00
{% endif %}
2016-02-16 15:25:28 -07:00
{% if build_type == "next" and on_saltstack %}
2016-05-25 17:39:55 -06:00
2016-02-16 17:11:12 -07:00
< 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 >
2016-02-16 15:25:28 -07:00
{% endif %}
2015-05-19 13:36:57 -06:00
{%- block document %}
2015-07-10 09:52:01 -06:00
< div class = "body-content" >
2015-05-19 13:36:57 -06:00
{% block body %} {% endblock %}
2015-07-10 09:52:01 -06:00
< / div >
2015-05-19 13:36:57 -06:00
{%- endblock %}
{%- if prev %}
< 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 >
{%- endif %}
{%- if next %}
< 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" >
Next < span class = "glyphicon glyphicon-chevron-right" > < / span > < / button > < / a >
{%- endif %}
< / div >
< / div >
{%- block footer %}
< div class = "footer" >
< hr / >
< div class = "row" >
2016-06-13 09:24:40 -06:00
{% if on_saltstack %}
2015-05-19 13:36:57 -06:00
< div class = "col-sm-6" >
2016-08-31 09:51:36 -06:00
< p > < i > {{ today }}< / i > < / p >
2015-05-19 13:36:57 -06:00
{% if build_type == "latest" %}
2019-10-25 18:27:55 +01:00
< 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 >
2015-05-19 13:36:57 -06:00
{% elif build_type == "previous" %}
2019-10-25 18:27:55 +01:00
< 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 >
2015-05-19 13:36:57 -06:00
2015-09-14 15:17:59 -06:00
{% elif build_type == "inactive" %}
2019-10-25 18:27:55 +01:00
< 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 >
2015-09-14 15:17:59 -06:00
2019-10-25 18:27:55 +01:00
{% elif build_type == repo_primary_branch %}
< 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 >
2015-05-19 13:36:57 -06:00
2016-02-16 15:25:28 -07:00
{% elif build_type == "next" %}
< 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 >
{% endif %}
2015-05-19 13:36:57 -06:00
< br >
2023-05-10 14:02:43 -05:00
< p > < a href = "https://saltproject.io/" > saltproject.io< / a > < / p >
2015-05-19 13:36:57 -06:00
2016-08-31 09:51:36 -06:00
< div class = "footer" >
2023-05-10 14:02:43 -05:00
< p > © {{ copyright }} VMware, Inc. | < a href = "https://www.vmware.com/help/privacy.html" target = "_blank" > Privacy Policy< / a > < / p >
2016-08-31 09:51:36 -06:00
< / div >
2015-05-19 13:36:57 -06:00
< / div >
< div class = "col-sm-6" >
2018-07-24 11:08:12 -04:00
<!--
2017-02-16 11:50:28 -07:00
< a href = "https://saltstack.com/saltstack-enterprise/" target = "_blank" > < img class = "nolightbox footer-banner center" src = "{{ pathto('_static/images/enterprise_ad.jpg', 1) }}" / > < / a >
2018-07-24 11:08:12 -04:00
-->
2023-05-10 14:02:43 -05:00
< a href = "https://docs.saltproject.io/salt/user-guide/en/latest/index.html" target = "_blank" > < img class = "nolightbox footer-banner center" src = "https://gitlab.com/saltstack/open/salt-branding-guide/-/raw/master/misc/banners/try_salt_now.png" / > < / a >
2015-05-19 13:36:57 -06:00
< / div >
2016-06-13 09:24:40 -06:00
{% endif %}
2015-05-19 13:36:57 -06:00
< / div >
< / div > <!-- end footer -->
{%- endblock %}
< / div >
< / div >
2015-07-10 09:52:01 -06:00
<!-- start sidebar -->
< div id = "sidebar-wrapper" >
< div id = "sidebar-static" >
2016-05-25 17:39:55 -06:00
<!-- <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>
2015-07-10 09:52:01 -06:00
{% if on_saltstack %}
2019-10-28 11:21:27 -06:00
{#
2016-05-25 17:39:55 -06:00
{% if [True, False]|random %}
2024-11-26 17:21:16 -06:00
< a href = "http://saltproject.io" target = "_blank" > < img class = "nolightbox sidebar-banner center" src = "{{ pathto('_static/images/banner-saltconf.png', 1) }}" / > < / a >
2016-05-25 17:39:55 -06:00
{% else %}
2016-01-06 15:19:21 -07:00
< a href = "http://saltstack.com/support" target = "_blank" > < img class = "nolightbox sidebar-banner center" src = "{{ pathto('_static/images/banner-support.png', 1) }}" / > < / a >
2019-10-28 11:21:27 -06:00
{% endif %} #}-->
2023-05-10 14:02:43 -05:00
< a href = "https://saltproject.io" target = "_blank" > < img class = "nolightbox sidebar-banner center" src = "https://gitlab.com/saltstack/open/salt-branding-guide/-/raw/master/logos/SaltProject_altlogo_teal.png" / > < / a >
2015-10-06 17:51:30 -06:00
2016-02-16 15:25:28 -07:00
{% if build_type=="next" %}
< div class = "versions" >
< p > < b > {{ next_release }}< / b > (Not Released)< / p >
< / div >
{% else %}
2015-09-14 15:17:59 -06:00
< div class = "releaselinks versions {{ build_type }}" >
2015-07-10 09:52:01 -06:00
2019-10-28 11:21:27 -06:00
< 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 >
2015-07-10 09:52:01 -06:00
< 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 >
2019-10-28 11:21:27 -06:00
< 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 >
2015-07-10 09:52:01 -06:00
< / div >
2016-02-16 15:25:28 -07:00
{% endif %}
2015-07-10 09:52:01 -06:00
{% else %}
< div class = "versions" >
< p > Version {{ version }}< / p >
< / div >
{% endif %}
< div id = "search-form" class = "inner-addon left-addon" >
< i class = "glyphicon glyphicon-search" > < / i >
< input type = "text" class = "form-control" >
< / div >
< / div > <!-- end sidebar - static -->
< div id = "sidebar-nav" >
{% block menu %}
{% set toctree = toctree(maxdepth=8, collapse=True, includehidden=True) %}
{% if toctree %}
{{ toctree }}
{% else %}
<!-- Local TOC -->
< div class = "local-toc" > {{ toc }}< / div >
{% endif %}
{% endblock %}
< / div >
< div id = "sidebar-static-bottom" >
2016-05-25 17:39:55 -06:00
<!-- <div class="text - nowrap">
< !– social icons from http://vervex.deviantart.com/art/somacro-45-300dpi-social-media-icons-267955425– >
2015-07-10 09:52:01 -06:00
< ul id = "social-links" class = "list-inline" >
2021-04-15 11:41:38 -05:00
< 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/channel/UCpveTIucFx9ljGelW63-BWg" target = "_blank" > < img class = "nolightbox" width = "24" src = "{{ pathto('_static/images/youtube-variation.png', 1) }}" > < / a > < / li >
< li > < a data-container = "body" data-delay = '{ "show": 500, "hide": 100 }' data-toggle = "tooltip" data-placement = "top" title = "view the latest saltstack tweets" href = "https://twitter.com/Salt_Project_OS" target = "_blank" > < img class = "nolightbox" width = "24" src = "{{ pathto('_static/images/twitter.png', 1) }}" > < / a > < / li >
2015-07-10 09:52:01 -06:00
< 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 >
< 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 >
2021-05-26 19:41:20 -05:00
< li > < a data-container = "body" data-delay = '{ "show": 500, "hide": 100 }' data-toggle = "tooltip" data-placement = "top" title = "chat in #salt on liberachat irc" href = "https://web.libera.chat/#salt" target = "_blank" > < img class = "nolightbox" width = "24" src = "{{ pathto('_static/images/messenger-generic.png', 1) }}" > < / a > < / li >
2015-07-10 09:52:01 -06:00
< 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 >
2021-04-15 11:41:38 -05:00
< 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 = "https://stackoverflow.com/questions/tagged/salt-stack+or+salt-cloud+or+salt-creation" target = "_blank" > < img class = "nolightbox" width = "24" src = "{{ pathto('_static/images/stackoverflow.png', 1) }}" > < / a > < / li >
2015-07-10 09:52:01 -06:00
< 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 >
< 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 >
< / ul >
2016-05-25 17:39:55 -06:00
< / div > -->
2015-07-10 09:52:01 -06:00
< / div >
< / div >
<!-- end sidebar -->
2015-05-19 13:36:57 -06:00
< / div > <!-- end wrapper -->
{%- endblock %} <!-- end block content -->
2015-07-10 09:52:01 -06:00
{%- if not embedded %}
{{ script() }}
{%- if use_opensearch %}
< link rel = "search" type = "application/opensearchdescription+xml"
title="{% trans docstitle=docstitle|e %}Search within {{ docstitle }}{% endtrans %}"
href="{{ pathto('_static/opensearch.xml', 1) }}">
{%- endif %}
{%- endif %}
2015-05-19 13:36:57 -06:00
{% if on_saltstack %}
2015-07-10 09:52:01 -06:00
2015-05-19 13:36:57 -06:00
<!-- analytics -->
< script type = "text/javascript" language = "javascript" > llactid = 23943 < / script >
2015-08-06 20:23:22 -06:00
< script type = "text/javascript" language = "javascript" src = "https://trackalyzer.com/trackalyze_secure.js" > < / script >
2015-05-19 13:36:57 -06:00
{% endif %}
< / body >
< / html >