add social media section to home page
This commit is contained in:
parent
d24754dd2d
commit
917f1e1d6b
42 changed files with 272 additions and 76 deletions
13
background.html
Normal file
13
background.html
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue