2015-11-21 21:20:51 +08:00
{{template "_head.html" .}}
2015-11-18 00:58:03 +08:00
<!-- end mainHeader -->
< button class = " btn-danger btn glyphicon glyphicon-plus floating-action-icon floating-action-icon-add" > < / button >
<!-- Add note modal -->
< div class = "modal fade " id = "addNoteModal" tabindex = "-1" role = "dialog" aria-labelledby = "newNoteLabel" aria-hidden = "true" >
< div class = "modal-dialog" >
< div class = "modal-content" >
< div class = "modal-header" >
< button type = "button" class = "close" data-dismiss = "modal" aria-label = "Close" > < span aria-hidden = "true" > × < / span > < / button >
< h4 class = "modal-title" id = "newNoteLabel" > < span class = "glyphicon glyphicon-pencil" > < / span > New Task< / h4 >
< / div >
< div class = "modal-body" >
< form action = "/add/" method = "POST" >
< div class = "form-group" >
<!-- <label for="note - title" class="control - label">Title:</label> -->
< input type = "text" name = "title" class = "form-control" id = "add-note-title" placeholder = "Title" style = "border:none;border-bottom:1px solid gray; box-shadow:none;" >
< / div >
< div class = "form-group" >
<!-- <label for="note - content" class="control - label">Content:</label> -->
< textarea class = "form-control" name = "content" id = "add-note-content" placeholder = "Content" rows = "10" style = "border:none;border-bottom:1px solid gray; box-shadow:none;" > < / textarea >
< / div >
< / div >
< div class = "modal-footer" >
< button type = "button" class = "btn btn-default" data-dismiss = "modal" > Close< / button >
< input type = "submit" text = "submit" class = "btn btn-default" / >
< / div >
< / form >
< / div >
< / div >
< / div >
< div class = "timeline" >
2015-11-21 22:12:20 +08:00
{{ if .Tasks}} {{range .Tasks}}
2015-11-18 00:58:03 +08:00
< div class = "note" >
2016-01-10 21:58:24 +08:00
< p class = "noteHeading" > {{.Title}}< / p > < button class = "toggle btn btn-primary" > toggle< / button >
2015-11-18 00:58:03 +08:00
< p class = "noteContent" > {{.Content}}< / p >
< span class = "notefooter" >
2015-11-13 17:04:42 +08:00
< ul class = "menu" >
< li role = "presentation" >
2015-11-14 18:10:21 +08:00
< span class = "glyphicon glyphicon-time" > < / span > {{.Created}}< / li >
2015-12-18 01:34:21 +08:00
< li role = "presentation" >
2015-11-13 17:04:42 +08:00
< a role = "menuitem" tabindex = "-1" href = "/mask/{{.Id}}" >
2015-12-18 01:34:21 +08:00
< span class = "glyphicon glyphicon-lock" > < / span > Mask< / a > < / li >
2015-11-18 00:58:03 +08:00
< li role = "presentation" >
< a role = "menuitem" tabindex = "-1" href = "/trash/{{.Id}}" >
< span class = "glyphicon glyphicon-trash" > < / span > Trash< / a >
< / li >
< li role = "presentation" >
< a role = "menuitem" tabindex = "-1" href = "/complete/{{.Id}}" >
< span class = "glyphicon glyphicon-check" > < / span > Complete< / a >
< / li >
< li role = "presentation" >
< a role = "menuitem" tabindex = "-1" href = "/edit/{{.Id}}" >
< span class = "glyphicon glyphicon-pencil" > < / span > Edit< / a >
< / li >
< / ul >
< / span >
< / div >
{{end}} {{else}}
2015-11-21 18:42:14 +08:00
< div class = "note" >
< p class = "noteHeading" > No Tasks here< / p >
< p class = "notefooter" > Create new task< button class = "floating-action-icon-add" style = "border:none;border-bottom:1px solid gray; box-shadow:none;" > here < / button > < / p >
< / div >
2015-11-18 00:58:03 +08:00
{{end}}
< / div >
{{template "footer.gtpl"}}
< / body >
2015-11-13 17:04:42 +08:00
< / html >