| 1 | include(meta_defs.m4)dnl |
| 2 | ifdef(`__slug',,`define(__slug, _get(`notes', __id))')dnl |
| 3 | ifdef(`__feed_atom', |
| 4 | `<entry xml:base="https://bndl.org"> |
| 5 | <author><name>bandali</name></author> |
| 6 | <id>tag:bndl.org,atom,notes:__slug</id> |
| 7 | <published>__pub</published> |
| 8 | <updated>__upd</updated> |
| 9 | <link href="https://bndl.org/__slug" rel="alternate" type="text/html"/> |
| 10 | <title>__title</title> |
| 11 | <content type="html">', |
| 12 | `ifdef(`__feed_rss', |
| 13 | `<item> |
| 14 | <title>__title</title> |
| 15 | <link>https://bndl.org/__slug</link> |
| 16 | <guid isPermaLink="false">tag:bndl.org,rss,notes:__slug</guid> |
| 17 | <pubDate>syscmd(date "-uRd __pub" | tr -d \\n)</pubDate> |
| 18 | <description>', |
| 19 | `<!doctype html> |
| 20 | <html lang="en"> |
| 21 | <head> |
| 22 | <meta charset="utf-8"/> |
| 23 | <meta name="author" content="bandali"/> |
| 24 | <meta name="viewport" content="width=device-width, initial-scale=1"/> |
| 25 | <title>__title`'ifdef(`__nts',,` — bandali')</title> |
| 26 | <link rel="alternate" href="/atom.xml" type="application/atom+xml"/> |
| 27 | <link rel="icon" href="/gnu.ico"/> |
| 28 | <link rel="stylesheet" href="/style.css"/> |
| 29 | <link rel="index" href="/"/> |
| 30 | ifdef(`__pub', |
| 31 | define(__previd, `_get(`notes', decr(__id))')dnl |
| 32 | define(__nextid, `_get(`notes', incr(__id))')dnl |
| 33 | `ifelse(__previd,,,`<link rel="prev" href="/__previd">')'dnl |
| 34 | `ifelse(__nextid,,,`<link rel="next" href="/__nextid">')')dnl |
| 35 | </head> |
| 36 | <body> |
| 37 | <header> |
| 38 | ifelse(__slug,`home',`<h1>__title</h1>', |
| 39 | `<strong><a href="/">Bandali</a>'s Personal Site</strong>') |
| 40 | </header> |
| 41 | <nav> |
| 42 | <ul> |
| 43 | <li><a href="/#notes">Notes</a></li> |
| 44 | <li><a href="/projects">Projects</a></li> |
| 45 | <li><a href="/publications">Publications</a></li> |
| 46 | <li><a href="/cv" title="curriculum vitae">CV</a></li> |
| 47 | <li><a href="/contact">Contact</a></li> |
| 48 | </ul> |
| 49 | </nav> |
| 50 | <main> |
| 51 | ifdef(`__pub', |
| 52 | `<article> |
| 53 | <header> |
| 54 | <h1>__title</h1> |
| 55 | <p>Published on syscmd(date "-d __pub" "+%B %e`,' %Y" | tr -d \\n)`'ifdef(`__upd',`<br/> |
| 56 | Last updated on syscmd(date "-d __upd" "+%B %e`,' %Y" | tr -d \\n)')</p> |
| 57 | </header>')')')dnl |