add social media section to home page

This commit is contained in:
Leo Horie 2014-05-15 17:13:16 -04:00
parent d24754dd2d
commit 917f1e1d6b
42 changed files with 272 additions and 76 deletions

13
background.html Normal file
View file

@ -0,0 +1,13 @@
<script src="mithril.js"></script>
<script type="text/javascript">
var app = {}
app.controller = function() {
this.index = 0
m.request({method: "GET", url: "/test.html"})
}
app.view = function(ctrl) {
return m("div", "hello" + ctrl.index)
}
m.render(document, app)
</script>