base.html 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet">
  36. <link href="https://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 href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css">
  42. <script src="{{ SITEURL }}/theme/tipuesearch/tipuesearch_content.js"></script>
  43. <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/tipuesearch/tipuesearch.css" media="screen">
  44. <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/css/elegant.css" media="screen">
  45. <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/css/custom.css" media="screen">
  46. {% endif %}
  47. {% endblock head_links %}
  48. {% include '_includes/favicon_links.html' %}
  49. {% block feed_links %}
  50. {% include '_includes/feeds.html' %}
  51. {% endblock feed_links %}
  52. {% include '_includes/analytics.html' %}
  53. </head>
  54. <body>
  55. <div id="content-sans-footer">
  56. <div class="navbar navbar-static-top">
  57. <div class="navbar-inner">
  58. <div class="container-fluid">
  59. <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
  60. <span class="icon-bar"></span>
  61. <span class="icon-bar"></span>
  62. <span class="icon-bar"></span>
  63. </a>
  64. <a class="brand" href="{{ SITEURL }}/"><span class=site-name>{{ SITENAME }}</span></a>
  65. <div class="nav-collapse collapse">
  66. <ul class="nav pull-right top-menu">
  67. <li {% if page_name == 'index' %} class="active"{% endif %}><a href="{{ SITEURL }}">Home</a></li>
  68. {% if DISPLAY_PAGES_ON_MENU %}
  69. {% for p in pages %}
  70. <li {% if p == page %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></li>
  71. {% endfor %}
  72. {% endif %}
  73. <!-- <li {% if page_name == 'categories' %} class="active"{% endif %}><a href="{{ SITEURL }}/categories.html">Categories</a></li> -->
  74. <!-- <li {% if page_name == 'tags' %} class="active"{% endif %}><a href="{{ SITEURL }}/tags.html">Tags</a></li> -->
  75. <!-- <li {% if page_name == 'archives' %} class="active"{% endif %}><a href="{{ SITEURL }}/archives.html">Archives</a></li> -->
  76. <li><a href="{{ SITEURL }}/thesis.pdf">Get PDF</a></li>
  77. <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>
  78. </ul>
  79. </div>
  80. </div>
  81. </div>
  82. </div>
  83. <div class="container-fluid">
  84. <div class="row-fluid">
  85. <div class="span1"></div>
  86. <div class="span10">
  87. {% block content %}
  88. {% endblock content %}
  89. </div>
  90. <div class="span1"></div>
  91. </div>
  92. </div>
  93. <div id="push"></div>
  94. </div>
  95. {% include '_includes/footer.html' %}
  96. {% block script %}
  97. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  98. <script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
  99. <script>
  100. function validateForm(query)
  101. {
  102. return (query.length > 0);
  103. }
  104. </script>
  105. {% endblock script %}
  106. {% include '_includes/stat_counter.html' %}
  107. </body>
  108. <!-- Theme: Elegant built for Pelican
  109. License : http://oncrashreboot.com/pelican-elegant -->
  110. </html>