• This project
    • Loading...
  • Sign in

201side / floater

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 3
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • floater
  • src
  • views
  • threadslist.handlebars
  • robin*'s avatar
    스레드 목록 추가 · b8bfb2f5
    b8bfb2f5
    robin* authored 2020-12-09 12:59:17 +0900
threadslist.handlebars 215 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<h1>
	{{board.title}}
	<small class="text-muted">
		{{board.name}}
	</small>
</h1>
<table class="table">
	{{#each threads}}
		<tr>
			<td>
				{{this.title}}
				({{this.count}})
			</td>
		</tr>
	{{/each}}
</table>