Le blog de Victor Héry
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

109 lines
5.6 KiB

  1. <!DOCTYPE html>
  2. <html lang="en-US">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. {% if article and article.author %}
  8. <meta name="author" content="{{ article.author }}" />
  9. <meta name="copyright" content="{{ article.author }}" />
  10. {% elif page and page.author %}
  11. <meta name="author" content="{{ page.author }}" />
  12. <meta name="copyright" content="{{ page.author }}" />
  13. {% else %}
  14. <meta name="author" content="{{ AUTHOR }}" />
  15. <meta name="copyright" content="{{ AUTHOR }}" />
  16. {% endif %}
  17. {% from '_includes/_defaults.html' import SITE_DESCRIPTION with context %}
  18. {% if SITE_DESCRIPTION %}
  19. <meta name="description" content="{% block head_description %}{{ SITE_DESCRIPTION|e }}{% endblock head_description %}" />
  20. {% endif %}
  21. {% block meta_tags_in_head %}
  22. {% from '_includes/_defaults.html' import GOOGLE_PLUS_PROFILE_URL with context %}
  23. {% if GOOGLE_PLUS_PROFILE_URL %}
  24. <link rel="author" href={{GOOGLE_PLUS_PROFILE_URL}} />
  25. {% endif %}
  26. {% from '_includes/_defaults.html' import TWITTER_USERNAME with context %}
  27. {%if TWITTER_USERNAME %}
  28. <meta name="twitter:creator" content="@{{TWITTER_USERNAME}}">
  29. {% endif %}
  30. <meta property="og:type" content="article" />
  31. <meta name="twitter:card" content="summary">
  32. {% endblock meta_tags_in_head %}
  33. <title>{% block title %}{{ SITENAME|striptags|e }}{% endblock title %}</title>
  34. {% block head_links %}
  35. <link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet">
  36. <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.1/css/font-awesome.css" rel="stylesheet">
  37. {% if 'assets' in PLUGINS %}
  38. {% include '_includes/minify_css.html' with context %}
  39. {% else %}
  40. <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/css/pygments.css" media="screen">
  41. <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/tipuesearch/tipuesearch.css" media="screen">
  42. <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/css/elegant.css" media="screen">
  43. <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/css/custom.css" media="screen">
  44. {% endif %}
  45. {% endblock head_links %}
  46. {% include '_includes/favicon_links.html' %}
  47. {% block feed_links %}
  48. {% include '_includes/feeds.html' %}
  49. {% endblock feed_links %}
  50. {% include '_includes/analytics.html' %}
  51. </head>
  52. <body>
  53. <div id="content-sans-footer">
  54. <div class="navbar navbar-static-top">
  55. <div class="navbar-inner">
  56. <div class="container-fluid">
  57. <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
  58. <span class="icon-bar"></span>
  59. <span class="icon-bar"></span>
  60. <span class="icon-bar"></span>
  61. </a>
  62. <a class="brand" href="{{ SITEURL }}/"><span class=site-name>{{ SITENAME }}</span></a>
  63. <div class="nav-collapse collapse">
  64. <ul class="nav pull-right top-menu">
  65. <li {% if page_name == 'index' %} class="active"{% endif %}><a href="{{ SITEURL }}">Home</a></li>
  66. {% if DISPLAY_PAGES_ON_MENU %}
  67. {% for p in pages %}
  68. <li {% if p == page %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></li>
  69. {% endfor %}
  70. {% endif %}
  71. <li {% if page_name == 'categories' %} class="active"{% endif %}><a href="{{ SITEURL }}/categories.html">Categories</a></li>
  72. <li {% if page_name == 'tags' %} class="active"{% endif %}><a href="{{ SITEURL }}/tags.html">Tags</a></li>
  73. <li {% if page_name == 'archives' %} class="active"{% endif %}><a href="{{ SITEURL }}/archives.html">Archives</a></li>
  74. <li><form class="navbar-search" action="{{ SITEURL }}/search.html" onsubmit="return validateForm(this.elements['q'].value);"> <input type="text" class="search-query" placeholder="Search" name="q" id="tipue_search_input"></form></li>
  75. </ul>
  76. </div>
  77. </div>
  78. </div>
  79. </div>
  80. <div class="container-fluid">
  81. <div class="row-fluid">
  82. <div class="span1"></div>
  83. <div class="span10">
  84. {% block content %}
  85. {% endblock content %}
  86. </div>
  87. <div class="span1"></div>
  88. </div>
  89. </div>
  90. <div id="push"></div>
  91. </div>
  92. {% include '_includes/footer.html' %}
  93. {% block script %}
  94. <script src="https://code.jquery.com/jquery.min.js"></script>
  95. <script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
  96. <script>
  97. function validateForm(query)
  98. {
  99. return (query.length > 0);
  100. }
  101. </script>
  102. {% endblock script %}
  103. {% include '_includes/stat_counter.html' %}
  104. {% include 'analytics.html' %}
  105. </body>
  106. <!-- Theme: Elegant built for Pelican
  107. License : http://oncrashreboot.com/pelican-elegant -->
  108. </html>