You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
639 B
29 lines
639 B
---
|
|
layout : 'default'
|
|
css : 'hotfix'
|
|
|
|
title : 'Test Page'
|
|
type : 'Library'
|
|
---
|
|
<%- @partial('header') %>
|
|
|
|
<div class="main container">
|
|
$(document).ready(function() {
|
|
$('.dropdown').dropdown();
|
|
});
|
|
</script>
|
|
|
|
<div>Show me posts trending
|
|
<div class="ui inline dropdown">
|
|
<div class="text">today</div>
|
|
<i class="dropdown icon"></i>
|
|
<input type="hidden" name="trending">
|
|
<div class="menu">
|
|
<div class="item" data-text="1">Today</div>
|
|
<div class="item" data-text="2">This Week</div>
|
|
<div class="item" data-text="this month">This Month</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|