624680bb93
- This is a first pass at getting a more logical structure. The focus is on moving from admin/frontend to client/server. - The location of the databases is highly important, this isn't expected to change again In the future - client/assets should probably become public/ - more stuff should be shared (helpers etc) - cleanup some confusion around tpl and views
18 lines
574 B
Handlebars
18 lines
574 B
Handlebars
<header>
|
|
<div class="twitter-display-image">
|
|
<img src="{{content.data.avatar}}" />
|
|
</div>
|
|
<span class="twitter-name">{{content.data.name}}</span>
|
|
<span class="twitter-handle">{{contnet.data.handle}}</span>
|
|
</header>
|
|
<article class="latest-tweet">
|
|
{{{content.data.tweet}}}
|
|
</article>
|
|
<footer>
|
|
<time class="tweet-time">{{content.data.time}}</time>
|
|
<div class="twitter-functions">
|
|
<a href="#"><i class="reply"></i></a>
|
|
<a href="#"><i class="retweet"></i></a>
|
|
<a href="#"><i class="favourite"></i></a>
|
|
</div>
|
|
</footer> |