My static website generator using poole https://www.xythobuz.de
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.

page.html 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. <!DOCTYPE html>
  2. <!--%
  3. if page.get("lang", "en") == "de":
  4. print '<html lang="de">'
  5. else:
  6. print '<html lang="en">'
  7. %-->
  8. <head>
  9. <meta charset="{{ htmlspecialchars(__encoding__) }}" />
  10. <title>{{ htmlspecialchars(page.title) }} - xythobuz.de</title>
  11. <meta name="description" content="{{ htmlspecialchars(page.get("description", "Electronics & Software Projects")) }}" />
  12. <meta name="keywords" content="{{ htmlspecialchars(page.get("keywords", "xythobuz")) }}" />
  13. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  14. <link rel="author" href="xythobuz@xythobuz.de" />
  15. <link rel="shortcut icon" href="img/favicon.ico" />
  16. <link rel="alternate" type="application/rss+xml" title="xythobuz.de" href="rss.xml" />
  17. <link type="text/css" rel="stylesheet" href="css/style.css" />
  18. <link type="text/css" rel="stylesheet" href="css/print.css" media="print" />
  19. <link type="text/css" rel="stylesheet" href="css/gh-fork-ribbon.css" />
  20. <link type="text/css" rel="stylesheet" href="css/lightgallery.min.css" />
  21. <script type="text/javascript" src="js/sh_main.js"></script>
  22. </head>
  23. <body onload="sh_highlightDocument('/js/sh/', '.min.js');">
  24. <!--%
  25. link = ""
  26. if page.get("github", "") != "":
  27. link = page.github
  28. if page.get("git", "") != "":
  29. link = page.git
  30. if link != "":
  31. # GitHub Fork-Me Ribbon
  32. print '<div class="github-fork-ribbon-wrapper right-bottom">'
  33. print '<div class="github-fork-ribbon"><a href="'
  34. print link
  35. print '">Fork this with Git</a></div></div>'
  36. %-->
  37. <div id="wrap"><div id="nav">
  38. <ul id="navbar">
  39. <li id="home"><a href="index.html">xythobuz.de</a></li>
  40. <!--%
  41. mpages = [p for p in pages if p.get("parent", "") == "main" and p.lang == "en"]
  42. mpages.sort(key=lambda p: int(p["position"]))
  43. entry = ' <li><a href="%s">%s</a></li>'
  44. for p in mpages[1:]:
  45. print(entry % (htmlspecialchars(p["url"]), htmlspecialchars(p["title"])))
  46. %-->
  47. <li>-</li>
  48. <li><a href="https://git.xythobuz.de/explore/repos">Gitea</a></li>
  49. <li><a href="https://github.com/xythobuz">GitHub</a></li>
  50. <li><a href="printer.html">🔨</a></li>
  51. <div class="fonts">
  52. <li><span class="font-big">Text:</span></li>
  53. <li><a class="dec" href="#"><span class="font-big">A</span><span class="font-small">A</span></a></li>
  54. <li><a class="reset" href="#"><span class="font-big">A</span><span class="font-big">A</span></a></li>
  55. <li><a class="inc" href="#"><span class="font-small">A</span><span class="font-big">A</span></a></li>
  56. </div>
  57. <!--%
  58. tmp = [p for p in page["lang_links"].iteritems()]
  59. if len(tmp) > 1:
  60. print ' <li>'
  61. print " ".join(["<li><a href='%s'>%s</a></li>" % (url, lang) for lang, url in page["lang_links"].iteritems()]).replace(">en<", '><img src="img/en.png" alt="English"><').replace(">de<", '><img src="img/de.png" alt="Deutsch"><')
  62. print "</li>"
  63. %-->
  64. </ul>
  65. </div></div>
  66. <div id="content">
  67. <!--%
  68. from datetime import datetime
  69. if page.get("noheader", "false") == "false":
  70. if page.get("title", "") == "Blog":
  71. print "<h1>%s</h1>" % (page.get("post", ""))
  72. else:
  73. if page.get("lang", "en") == "de":
  74. print "<h1>%s</h1>" % (page.get("title_de", ""))
  75. else:
  76. print "<h1>%s</h1>" % (page.get("title", ""))
  77. if page.get("lang", "en") == "de":
  78. if page.get("description_de", "") != "":
  79. print "<h5>%s</h5>" % (page.get("description_de", ""))
  80. elif page.get("description", "") != "":
  81. print "<h5>%s</h5>" % (page.get("description", ""))
  82. else:
  83. if page.get("description", "") != "":
  84. print "<h5>%s</h5>" % (page.get("description", ""))
  85. if page.get("date", "") != "":
  86. if page.get("title", "") == "Blog":
  87. if page.get("lang", "en") == "de":
  88. date = datetime.strptime(page["date"], "%Y-%m-%d").strftime("%d.%m.%Y")
  89. print "<i>Ver&ouml;ffentlicht am %s.</i>" % date
  90. else:
  91. date = datetime.strptime(page["date"], "%Y-%m-%d").strftime("%B %d, %Y")
  92. print "<i>Published on %s.</i>" % date
  93. else:
  94. if page.get("lang", "en") == "de":
  95. date = datetime.strptime(page["date"], "%Y-%m-%d").strftime("%d.%m.%Y")
  96. print "<i>Projekt gestartet am %s.</i>" % date
  97. else:
  98. date = datetime.strptime(page["date"], "%Y-%m-%d").strftime("%B %d, %Y")
  99. print "<i>Project started on %s.</i>" % date
  100. if page.get("date", "") != "" and page.get("update", "") != "":
  101. print "<br>"
  102. if page.get("update", "") != "":
  103. if page.get("lang", "en") == "de":
  104. date = datetime.strptime(page["update"], "%Y-%m-%d").strftime("%d.%m.%Y")
  105. print "<i>Zuletzt aktualisiert am %s.</i>" % date
  106. else:
  107. date = datetime.strptime(page["update"], "%Y-%m-%d").strftime("%B %d, %Y")
  108. print "<i>Last updated on %s.</i>" % date
  109. link = githubCommitBadge(page, True)
  110. if len(link) > 0:
  111. print "<p>Recent activity on GitHub: " + link + "</p>"
  112. %-->
  113. {{ __content__ }}
  114. <hr>
  115. <!--%
  116. # Comments
  117. if page.get("comments", "false") == "true":
  118. print '<div id="commento"></div>'
  119. print '<hr>'
  120. elif page.get("comments", "false") != "false":
  121. print '<div style="text-align: center;"><a href="%s">Head over here to discuss this article!</a></div>' % page.get("comments", "false")
  122. print '<hr>'
  123. %-->
  124. </div>
  125. <div id="footer">
  126. <a href="https://hg.sr.ht/~obensonne/poole">Poole</a>
  127. &middot;
  128. <a href="http://shjs.sourceforge.net">SHJS</a>
  129. &middot;
  130. <a href="https://github.com/sachinchoolur/lightGallery">lightGallery</a>
  131. &middot;
  132. <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">CC-BY</a>
  133. &middot;
  134. <a href="https://github.com/sponsors/xythobuz">GitHub Sponsors</a>
  135. &middot;
  136. <a href="http://www.amazon.de/?_encoding=UTF8&amp;camp=1638&amp;creative=19454&amp;linkCode=ur2&amp;site-redirect=de&amp;tag=xythobuzorg-21">Amazon.de Affiliate</a>
  137. &middot;
  138. <a href="https://www.paypal.com/us/cgi-bin/webscr?cmd=_send-money&nav=1&email=xythobuz@me.com">PayPal</a>
  139. </div>
  140. <script type="text/javascript" src="js/jquery.min.js"></script>
  141. <!--%
  142. if page.get("comments", "false") == "true":
  143. print '<script defer src="https://comments.xythobuz.de/js/commento.js"></script>'
  144. %-->
  145. <script type="text/javascript">
  146. $(document).ready(function() {
  147. jQuery(window).resize(function() {
  148. $('#wrap').css('height', $('#nav').css('height'));
  149. });
  150. var fontSize = parseInt($('body').css('font-size'), 10);
  151. var initialFontSize = fontSize;
  152. $('.inc').on('click', function() {
  153. fontSize += 1;
  154. $('#content').css('font-size', fontSize + 'px');
  155. })
  156. $('.dec').on('click', function() {
  157. if (fontSize > 1) {
  158. fontSize -= 1;
  159. $('#content').css('font-size', fontSize + 'px');
  160. }
  161. })
  162. $('.reset').on('click', function() {
  163. if (fontSize != initialFontSize) {
  164. fontSize = initialFontSize;
  165. $('#content').css('font-size', initialFontSize + 'px');
  166. }
  167. })
  168. $(document).keypress(function(event) {
  169. if (event.charCode == '+'.charCodeAt(0)) {
  170. fontSize += 1;
  171. $('#content').css('font-size', fontSize + 'px');
  172. }
  173. if (event.charCode == '-'.charCodeAt(0)) {
  174. if (fontSize > 1) {
  175. fontSize -= 1;
  176. $('#content').css('font-size', fontSize + 'px');
  177. }
  178. }
  179. if (event.charCode == '0'.charCodeAt(0)) {
  180. if (fontSize != initialFontSize) {
  181. fontSize = initialFontSize;
  182. $('#content').css('font-size', initialFontSize + 'px');
  183. }
  184. }
  185. });
  186. })
  187. </script>
  188. <script type="text/javascript" src="js/jquery.mousewheel.min.js"></script>
  189. <script type="text/javascript" src="js/lightgallery-all.min.js"></script>
  190. <script type="text/javascript">
  191. $(document).ready(function() {
  192. var lg = document.getElementsByClassName("lightgallery");
  193. for (var i = 0; i < lg.length; i++) {
  194. var settings = {
  195. loadYoutubeThumbnail: true,
  196. youtubeThumbSize: 'mqdefault',
  197. loadVimeoThumbnail: true,
  198. vimeoThumbSize: 'thumbnail_medium',
  199. youtubePlayerParams: {
  200. modestbranding: 1,
  201. showinfo: 0,
  202. rel: 0
  203. },
  204. vimeoPlayerParams: {
  205. byline: 0,
  206. portrait: 0
  207. },
  208. thumbnail:true,
  209. animateThumb: true,
  210. showThumbByDefault: false,
  211. galleryId: i
  212. };
  213. var d = lg.item(i);
  214. if ($(d).find(".border").length > 0) {
  215. settings.selector = '.border';
  216. }
  217. $(d).lightGallery(settings);
  218. }
  219. });
  220. </script>
  221. <script>
  222. var coll = document.getElementsByClassName("collapse");
  223. var i;
  224. for (i = 0; i < coll.length; i++) {
  225. coll[i].addEventListener("click", function() {
  226. this.classList.toggle("collapseactive");
  227. var content = this.nextElementSibling;
  228. if (content.style.maxHeight) {
  229. content.style.maxHeight = null;
  230. setTimeout(function() {
  231. content.style.borderWidth = null;
  232. }, 800);
  233. } else {
  234. content.style.maxHeight = content.scrollHeight + "px";
  235. content.style.borderWidth = "2px";
  236. }
  237. });
  238. }
  239. </script>
  240. <script>
  241. (function(f, a, t, h, o, m){
  242. a[h]=a[h]||function(){
  243. (a[h].q=a[h].q||[]).push(arguments)
  244. };
  245. o=f.createElement('script'),
  246. m=f.getElementsByTagName('script')[0];
  247. o.async=1; o.src=t; o.id='fathom-script';
  248. m.parentNode.insertBefore(o,m)
  249. })(document, window, '//stats.xythobuz.de/tracker.js', 'fathom');
  250. fathom('set', 'siteId', 'APYRK');
  251. fathom('trackPageview');
  252. </script>
  253. </body>
  254. </html>