8c49c709655eindex.en.txt← 134:01b49a70ff3b |
203:8c49c709655e |
218:5a2e19e0bbf1 → |
-rw-r--r--recent pandoc bug (see issue 239) broke the layout of /index; applied workaround for now.
1 ## vim: syn=mako 2 <%inherit file="index.tmpl.html"/> 3 <%! import json %> 4 5 **mearie.org** is a personal domain and website of me, [Kang Seonghoon](/about/kang-seonghoon). I am a software developer engaged in several free and open source projects. 6 7 <div class="mearie-news"> 8 <h1>News</h1> 9 % for entry in json.load(open(uri_to_path(self, u'/recent.json'))): 10 % if entry.get('en'): 11 * ${entry['en']} <small>(${entry['date']})</small> 12 % endif 13 % endfor 14 15 </div> 16 <div class="mearie-activity"> 17 <h1>Recent Activity</h1> 18 <noscript> 19 20 You can watch my recent activity at [FriendFeed](http://friendfeed.com/lifthrasiir). 21 22 </noscript> 23 </div> 24 25 <p class="mearie-neighbors"> 26 Nearby: 27 [cosmic.mearie.org](//cosmic.mearie.org/), 28 [Mercurial repository](//hg.mearie.org/), 29 [Subversion repository](//svn.mearie.org/), 30 [Twitter](http://twitter.com/senokay/), 31 [Bitbucket](http://bitbucket.org/lifthrasiir/) 32 </p> 33