mirror of
https://github.com/instaloader/instaloader.git
synced 2024-11-04 09:22:29 +01:00
78a93c945e
saythanks.io does not work again and the link is now removed.
This reverts commit b2acbcf0e0
.
115 lines
4.6 KiB
HTML
115 lines
4.6 KiB
HTML
{% extends "!layout.html" %}
|
|
|
|
{% set html5_doctype = True %}
|
|
|
|
{% set script_files = script_files + ['_static/bootstrap-4.1.3.bundle.min.js', '_static/instaloader.js'] %}
|
|
|
|
{% block htmltitle %}
|
|
{% if pagename == "index" %}
|
|
<title>{{ title|striptags|e }}</title>
|
|
{% else %}
|
|
<title>{{ title|striptags|e }}{{ titlesuffix }}</title>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block extrahead %}
|
|
{{ super() }}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="google-site-verification" content="FNUsDdkOJM9obm9QEdrNBVd9AtAzHzA-aaSMCUrS6C8"/>
|
|
{% if pagename == "index" %}
|
|
<link rel="canonical" href="https://instaloader.github.io/"/>
|
|
{% else %}
|
|
<link rel="canonical" href="https://instaloader.github.io/{{ pagename }}.html"/>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block header %}
|
|
<nav class="navbar navbar-expand-sm navbar-light bg-light fixed-top border-bottom">
|
|
<a class="navbar-brand" href="{{ pathto(master_doc) }}">
|
|
<img src="{{ pathto('_static/' + logo, 1) }}" width="30" height="30" class="d-inline-block align-top" alt="logo">
|
|
Instaloader
|
|
</a>
|
|
<ul class="navbar-nav mr-auto">
|
|
<li class="nav-item ml-0 ml-sm-2 ml-md-0">
|
|
<a target="_blank" class="nav-link"
|
|
href="https://github.com/instaloader/instaloader/releases/tag/v{{ current_release }}"
|
|
title="Released on {{ current_release_date }}" data-toggle="tooltip">v<b>{{ current_release }}</b></a>
|
|
</li>
|
|
</ul>
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarLinks"
|
|
aria-controls="navbarLinks" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarLinks">
|
|
<ul class="navbar-nav ml-auto">
|
|
<li class="nav-item">
|
|
<a target="_blank" class="nav-link" href="https://github.com/instaloader/instaloader/issues">Issues</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a target="_blank" class="nav-link" href="https://github.com/instaloader/instaloader/releases">Releases</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a target="_blank" class="nav-link" href="https://github.com/instaloader/instaloader">GitHub</a>
|
|
</li>
|
|
</ul>
|
|
<form class="form-inline" action="search.html" method="get">
|
|
<div class="input-group my-2 my-sm-0 ml-2">
|
|
<input class="form-control" type="search" placeholder="Search" aria-label="Search" name="q">
|
|
<div class="input-group-append">
|
|
<button class="btn btn-success btn-small" type="submit">Go</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% if pagename != "index" %}
|
|
<button type="button" class="btn btn-success d-md-none btn-small ml-2" data-toggle="modal"
|
|
data-target="#navbarToc">
|
|
TOC
|
|
</button>
|
|
{% endif %}
|
|
</nav>
|
|
{% if pagename != "index" %}
|
|
<div class="modal fade" id="navbarToc" tabindex="-1" role="dialog"
|
|
aria-hidden="true" aria-labelledby="navbarTocTitle">
|
|
<div class="modal-dialog modal-dialog-centered" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="navbarTocTitle">Contents</h5>
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
{{ toctree(maxdepth=-1) }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block relbar1 %}{% endblock %}
|
|
{% block relbar2 %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{% block content %}
|
|
<div class="container-fluid row">
|
|
<div class="col-12 {% if pagename != "index" %}col-md-9 col-xl-10{% endif %} doc-content">
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
{% if pagename != "index" %}
|
|
<div class="d-none col-md-3 col-xl-2 bg-light doc-sidebar d-md-flex flex-column border-left">
|
|
|
|
<h3>{{ _('Table of Contents') }}</h3>
|
|
{{ toctree(maxdepth=-1) }}
|
|
|
|
<div class="d-flex justify-content-between small mt-auto mb-2">
|
|
<a class="reference internal{% if pagename == "genindex" %} current{% endif %}" href="genindex.html">Index</a>
|
|
{% if pagename != "genindex" and pagename != "search" %}
|
|
<a class="reference external"
|
|
href="https://github.com/instaloader/instaloader/edit/master/docs/{{ pagename }}.rst">Edit this page</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %} |