/
Alex_Ural
/
PythonDataScienceHandbook
Обзор
Документация
Войти
/
Alex_Ural
/
PythonDataScienceHandbook
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
website/theme/templates/base.html
94 строки
4 KB
Jake VanderPlas
Fix some links
15 авг 2017, 19:14
15 авг 2017, 19:14
f42180f
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="author" content="{{ AUTHOR }}"> <meta name="description" content="{% block description %}{%endblock%}"> <meta name="viewport" content="width=device-width"> <title>{% block title %}{% endblock %} | {{ SITENAME }}</title> <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <link rel="alternate" type="application/atom+xml" title="{{ SITENAME }} blog atom feed" href="/feeds/all.atom.xml" /> <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> <link rel="stylesheet" type="text/css" href="/theme/css/icons.css"/> <style>{% include 'pygments.css' %}</style> <style>{% include 'main.css' %}</style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> {% if ENABLE_MATHJAX %} <script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript"></script> <script type="text/javascript"> init_mathjax = function() { if (window.MathJax) { // MathJax loaded MathJax.Hub.Config({ tex2jax: { inlineMath: [ ['$','$'], ["\\(","\\)"] ], displayMath: [ ['$$','$$'], ["\\[","\\]"] ] }, displayAlign: 'left', // Change this to 'center' to center equations. "HTML-CSS": { styles: {'.MathJax_Display': {"margin": 0}} } }); MathJax.Hub.Queue(["Typeset",MathJax.Hub]); } } init_mathjax(); </script> {% endif %} {% block extra_head %}{%endblock%} </head> <body> <header class="navbar navbar-inverse bs-docs-nav"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#theNavbar"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="/{{ SITESUBURL }}" title="Home" class="title">{{ SITENAME }}</a> </div> <nav class="collapse navbar-collapse bs-navbar-collapse" role="navigation" id="theNavbar"> <ul class="nav navbar-nav navbar-right"> {% if ABOUT_PAGE %} <li><a href="{{ ABOUT_PAGE }}" title="About">About</a></li> {% endif %} {% if PHOTOS_PAGE %} <li><a href="{{ PHOTOS_PAGE }}" title="Photos">Photos</a></li> {% endif %} {% if SHOW_ARCHIVES %} <li><a href="/archives.html" title="Archive">Archive</a></li> {% endif %} {% if SHOW_FEED %} <li><a class="nodec icon-rss" href="{{ FEED_ALL_ATOM }}" title="jakevdp.github.io RSS feed" rel="me"></a></li> {% endif %} </ul> </nav> </div> </header> <div id="wrap"> {% block content %}{% endblock %} </div> <!-- <footer> <p> © 2012-2017 {{ AUTHOR }}, license <a href="{{ LICENSE_URL}}"> {{LICENSE_NAME }}</a> unless otherwise noted. Generated by <a href= "http://docs.getpelican.com/">Pelican</a>. </p> </footer> --> {% include '_includes/analytics.html' %} </body> </html>