├── dev.sh ├── screenshot1.png ├── screenshot2.png ├── public ├── img │ ├── me.jpg │ ├── mint.png │ └── sky.jpeg ├── materialize │ └── font │ │ ├── roboto │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Thin.ttf │ │ ├── Roboto-Bold.woff │ │ ├── Roboto-Bold.woff2 │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Light.woff │ │ ├── Roboto-Light.woff2 │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Thin.woff │ │ ├── Roboto-Thin.woff2 │ │ ├── Roboto-Medium.woff2 │ │ ├── Roboto-Regular.woff │ │ └── Roboto-Regular.woff2 │ │ └── material-design-icons │ │ ├── Material-Design-Icons.eot │ │ ├── Material-Design-Icons.ttf │ │ ├── Material-Design-Icons.woff │ │ ├── Material-Design-Icons.woff2 │ │ └── LICENSE.txt ├── js │ ├── aurora.js │ ├── t.min.js │ ├── profile.js │ ├── golem.js │ └── msg.js └── css │ └── aurora.css ├── doc.go ├── templates ├── 403.html ├── 404.html ├── home.html ├── snippets │ ├── profile_pic_upload.html │ ├── people.html │ ├── pitch.html │ ├── home.html │ ├── uploads.html │ ├── profile_update_form.html │ └── profile_info.html ├── base │ ├── footer.html │ └── head.html ├── profile │ ├── update.html │ └── home.html └── auth │ ├── login.html │ └── register.html ├── config ├── build.json └── app.json ├── cmd └── aurora │ └── aurora.go ├── profile.go ├── utils_test.go ├── models_test.go ├── LICENCE ├── auth.go ├── ZANZIBAR ├── profile_test.go ├── docs └── getting-started.md ├── README.md ├── models.go ├── .gitignore ├── auth_test.go ├── session_test.go ├── session.go ├── forms_test.go ├── utils.go ├── msg_test.go ├── forms.go ├── bin └── build.go ├── uploads.go ├── uploads_test.go ├── msg.go ├── i18n.go ├── remix.go └── remix_test.go /dev.sh: -------------------------------------------------------------------------------- 1 | go run bin/build.go -v 2 | 3 | ./builds/0.0.1/aurora 4 | -------------------------------------------------------------------------------- /screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/screenshot1.png -------------------------------------------------------------------------------- /screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/screenshot2.png -------------------------------------------------------------------------------- /public/img/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/img/me.jpg -------------------------------------------------------------------------------- /public/img/mint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/img/mint.png -------------------------------------------------------------------------------- /public/img/sky.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/img/sky.jpeg -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- 1 | /* 2 | Package aurora is a minimalistic social network library. 3 | */ 4 | package aurora 5 | -------------------------------------------------------------------------------- /templates/403.html: -------------------------------------------------------------------------------- 1 | {{template "base/head" .}} 2 |
forbidden
3 | {{template "base/footer" .}} 4 | -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- 1 | {{template "base/head" .}} 2 |shit not found
3 | {{template "base/footer" .}} 4 | -------------------------------------------------------------------------------- /public/materialize/font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/materialize/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /public/materialize/font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/materialize/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /public/materialize/font/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/materialize/font/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /public/materialize/font/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/materialize/font/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /public/materialize/font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/materialize/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /public/materialize/font/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/materialize/font/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /public/materialize/font/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/materialize/font/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /public/materialize/font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/materialize/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /public/materialize/font/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/materialize/font/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /public/materialize/font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/materialize/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /public/materialize/font/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/materialize/font/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /public/materialize/font/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/materialize/font/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /public/materialize/font/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/materialize/font/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /public/materialize/font/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/materialize/font/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /public/materialize/font/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/materialize/font/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /public/materialize/font/material-design-icons/Material-Design-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/materialize/font/material-design-icons/Material-Design-Icons.eot -------------------------------------------------------------------------------- /public/materialize/font/material-design-icons/Material-Design-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/materialize/font/material-design-icons/Material-Design-Icons.ttf -------------------------------------------------------------------------------- /public/materialize/font/material-design-icons/Material-Design-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/materialize/font/material-design-icons/Material-Design-Icons.woff -------------------------------------------------------------------------------- /public/materialize/font/material-design-icons/Material-Design-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gernest/aurora/HEAD/public/materialize/font/material-design-icons/Material-Design-Icons.woff2 -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- 1 | {{template "base/head" .}} 2 | {{if .InSession}} 3 | {{template "snippets/home" .}} 4 | {{else}} 5 | {{template "snippets/pitch" .}} 6 | {{end}} 7 | {{template "base/footer" .}} 8 | -------------------------------------------------------------------------------- /config/build.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"aurora", 3 | "version":"0.0.1", 4 | "public":"public", 5 | "templates":"templates", 6 | "dest":"builds", 7 | "src":"cmd/aurora", 8 | "config":"config", 9 | "database_dir":"db" 10 | } 11 | -------------------------------------------------------------------------------- /public/js/aurora.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by gernest on 5/4/15. 3 | */ 4 | 5 | $(document).ready(function(){ 6 | // paralax 7 | $('.parallax').parallax(); 8 | $('.collapsible').collapsible({ 9 | accordion : false 10 | }); 11 | $('.materialboxed').materialbox(); 12 | $(".button-collapse").sideNav(); 13 | }); -------------------------------------------------------------------------------- /templates/snippets/profile_pic_upload.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base/footer.html: -------------------------------------------------------------------------------- 1 | 12 |