404
5 | 6 |8 |
Oops! Page not found.
9 |10 | We could not find the page you were looking for. 11 | Meanwhile, you may return to dashboard or try using the search form. 12 |
13 |├── public ├── img │ ├── luban.png │ └── luban-brand.png ├── assets │ ├── font-awesome-4.5.0 │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ └── css │ │ │ └── font-awesome.min.css │ ├── AdminLTE-2.3.11 │ │ ├── css │ │ │ └── skins │ │ │ │ └── skin-black-light.min.css │ │ └── js │ │ │ └── app.min.js │ └── bootstrap-3.3.5 │ │ └── js │ │ └── bootstrap.min.js └── plugins │ └── select2 │ └── select2.min.css ├── Makefile ├── .gitignore ├── .bra.toml ├── templates ├── base │ ├── alert.tmpl │ ├── footer.tmpl │ └── head.tmpl ├── status │ ├── 404.tmpl │ └── 500.tmpl ├── builder │ ├── new.tmpl │ ├── list.tmpl │ └── edit.tmpl ├── dashboard.tmpl └── task │ ├── new_batch.tmpl │ ├── list.tmpl │ ├── new.tmpl │ └── view.tmpl ├── conf └── app.ini ├── README.md ├── pkg ├── context │ ├── auth.go │ └── context.go ├── form │ ├── builder.go │ ├── task.go │ └── form.go ├── setting │ ├── batch.go │ ├── matrix.go │ └── setting.go ├── template │ └── template.go └── tool │ └── tool.go ├── routes ├── dashboard.go ├── task.go ├── builder.go └── builder_api.go ├── models ├── error.go ├── matrix.go ├── models.go ├── user.go ├── builder.go └── task.go ├── luban.go └── LICENSE /public/img/luban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lubanstudio/luban/HEAD/public/img/luban.png -------------------------------------------------------------------------------- /public/img/luban-brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lubanstudio/luban/HEAD/public/img/luban-brand.png -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | build-dev: 2 | go install -v 3 | mv $(GOPATH)/bin/luban . 4 | 5 | clean: 6 | go clean -i ./... 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | luban.sublime-project 2 | luban.sublime-workspace 3 | luban 4 | custom 5 | data 6 | /log 7 | /.idea 8 | -------------------------------------------------------------------------------- /public/assets/font-awesome-4.5.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lubanstudio/luban/HEAD/public/assets/font-awesome-4.5.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/assets/font-awesome-4.5.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lubanstudio/luban/HEAD/public/assets/font-awesome-4.5.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/assets/font-awesome-4.5.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lubanstudio/luban/HEAD/public/assets/font-awesome-4.5.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/assets/font-awesome-4.5.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lubanstudio/luban/HEAD/public/assets/font-awesome-4.5.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/assets/font-awesome-4.5.0/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lubanstudio/luban/HEAD/public/assets/font-awesome-4.5.0/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /.bra.toml: -------------------------------------------------------------------------------- 1 | [run] 2 | init_cmds = [ 3 | ["make", "build-dev"], 4 | ["./luban"] 5 | ] 6 | watch_all = true 7 | watch_dirs = [ 8 | "models", 9 | "pkg", 10 | "routes" 11 | ] 12 | watch_exts = [".go"] 13 | cmds = [ 14 | ["make", "build-dev"], 15 | ["./luban"] 16 | ] -------------------------------------------------------------------------------- /templates/base/alert.tmpl: -------------------------------------------------------------------------------- 1 | {{if .Flash.ErrorMsg}} 2 |
10 | We could not find the page you were looking for. 11 | Meanwhile, you may return to dashboard or try using the search form. 12 |
13 |10 | We will work on fixing that right away. 11 | Meanwhile, you may return to dashboard or try using the search form. 12 |
13 | 14 |