├── .editorconfig ├── .github └── workflows │ └── dub.yml ├── .gitignore ├── .travis.yml ├── .vscode ├── extensions.json └── tasks.json ├── Brewfile ├── LICENSE ├── README.md ├── dub.json ├── eloquent.sublime-project ├── i18n ├── text.de_DE.po ├── text.en_GB.po ├── text.en_US.po └── text.ru_RU.po ├── package.json ├── public ├── robots.txt └── styles │ └── style.css ├── schema.sql ├── screenshot.png ├── source ├── app.d ├── config │ ├── context.d │ ├── database.d │ ├── logging │ │ ├── colorstdlogger.d │ │ ├── colorvibelogger.d │ │ └── package.d │ ├── motd.d │ └── properties.d ├── controllers │ ├── admincontroller.d │ ├── package.d │ └── webappcontroller.d ├── model │ ├── blogpost.d │ ├── comment.d │ ├── package.d │ └── user.d └── services │ ├── blogservice.d │ ├── package.d │ └── userservice.d ├── views ├── admin_blogposts.dt ├── admin_comments.dt ├── admin_users.dt ├── error.dt ├── header.dt ├── index.dt ├── layout.dt ├── login.dt └── profile.dt └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/dub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/.github/workflows/dub.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/Brewfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/README.md -------------------------------------------------------------------------------- /dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/dub.json -------------------------------------------------------------------------------- /eloquent.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/eloquent.sublime-project -------------------------------------------------------------------------------- /i18n/text.de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/i18n/text.de_DE.po -------------------------------------------------------------------------------- /i18n/text.en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/i18n/text.en_GB.po -------------------------------------------------------------------------------- /i18n/text.en_US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/i18n/text.en_US.po -------------------------------------------------------------------------------- /i18n/text.ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/i18n/text.ru_RU.po -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/package.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /admin/ 3 | -------------------------------------------------------------------------------- /public/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/public/styles/style.css -------------------------------------------------------------------------------- /schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/schema.sql -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/screenshot.png -------------------------------------------------------------------------------- /source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/source/app.d -------------------------------------------------------------------------------- /source/config/context.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/source/config/context.d -------------------------------------------------------------------------------- /source/config/database.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/source/config/database.d -------------------------------------------------------------------------------- /source/config/logging/colorstdlogger.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/source/config/logging/colorstdlogger.d -------------------------------------------------------------------------------- /source/config/logging/colorvibelogger.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/source/config/logging/colorvibelogger.d -------------------------------------------------------------------------------- /source/config/logging/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/source/config/logging/package.d -------------------------------------------------------------------------------- /source/config/motd.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/source/config/motd.d -------------------------------------------------------------------------------- /source/config/properties.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/source/config/properties.d -------------------------------------------------------------------------------- /source/controllers/admincontroller.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/source/controllers/admincontroller.d -------------------------------------------------------------------------------- /source/controllers/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/source/controllers/package.d -------------------------------------------------------------------------------- /source/controllers/webappcontroller.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/source/controllers/webappcontroller.d -------------------------------------------------------------------------------- /source/model/blogpost.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/source/model/blogpost.d -------------------------------------------------------------------------------- /source/model/comment.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/source/model/comment.d -------------------------------------------------------------------------------- /source/model/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/source/model/package.d -------------------------------------------------------------------------------- /source/model/user.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/source/model/user.d -------------------------------------------------------------------------------- /source/services/blogservice.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/source/services/blogservice.d -------------------------------------------------------------------------------- /source/services/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/source/services/package.d -------------------------------------------------------------------------------- /source/services/userservice.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/source/services/userservice.d -------------------------------------------------------------------------------- /views/admin_blogposts.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/views/admin_blogposts.dt -------------------------------------------------------------------------------- /views/admin_comments.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/views/admin_comments.dt -------------------------------------------------------------------------------- /views/admin_users.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/views/admin_users.dt -------------------------------------------------------------------------------- /views/error.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/views/error.dt -------------------------------------------------------------------------------- /views/header.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/views/header.dt -------------------------------------------------------------------------------- /views/index.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/views/index.dt -------------------------------------------------------------------------------- /views/layout.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/views/layout.dt -------------------------------------------------------------------------------- /views/login.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/views/login.dt -------------------------------------------------------------------------------- /views/profile.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/views/profile.dt -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingingBush/eloquent/HEAD/yarn.lock --------------------------------------------------------------------------------