2015-11-13 17:04:42 +08:00
|
|
|
package types
|
|
|
|
|
2015-11-21 21:20:51 +08:00
|
|
|
//Task is the struct used to identify tasks
|
2015-11-13 17:04:42 +08:00
|
|
|
type Task struct {
|
|
|
|
Id int
|
|
|
|
Title string
|
|
|
|
Content string
|
2015-11-14 18:10:21 +08:00
|
|
|
Created string
|
2015-11-13 17:04:42 +08:00
|
|
|
}
|
2015-11-21 21:20:51 +08:00
|
|
|
|
|
|
|
//Context is the struct passed to templates
|
|
|
|
type Context struct {
|
|
|
|
Tasks []Task
|
|
|
|
Navigation string
|
2015-11-21 22:12:44 +08:00
|
|
|
Search string
|
2015-11-21 21:20:51 +08:00
|
|
|
}
|