├── .editorconfig
├── .gitignore
├── .jshintignore
├── .jshintrc
├── .nvmrc
├── .travis.yml
├── LICENSE.md
├── README.md
├── bower.json
├── ci
├── compile.sh
└── travis_deploy.sh
├── contributing.md
├── deploy_key.enc
├── frontpress.json.v1.sample
├── frontpress.json.v2.sample
├── gulpfile.js
├── karma.conf.js
├── package.json
├── release
├── frontpress.js
├── frontpress.min.js
├── frontpress.v1.js
└── frontpress.v1.min.js
├── src
├── index.html
└── js
│ ├── apis
│ ├── configs-to-params
│ │ ├── configs-to-params.module.js
│ │ └── models
│ │ │ └── configs-to-params.model.js
│ ├── v1
│ │ ├── api-manager-map
│ │ │ ├── api-manager-map.module.js
│ │ │ └── constants
│ │ │ │ └── api-manager-map.constant.js
│ │ ├── blog
│ │ │ ├── blog.module.js
│ │ │ └── models
│ │ │ │ └── blog-api.model.js
│ │ ├── categories
│ │ │ ├── categories.module.js
│ │ │ └── models
│ │ │ │ └── categories-api.model.js
│ │ ├── media
│ │ │ ├── media.module.js
│ │ │ └── models
│ │ │ │ └── media-api.model.js
│ │ ├── posts
│ │ │ ├── models
│ │ │ │ └── posts-api.model.js
│ │ │ └── posts.module.js
│ │ └── tags
│ │ │ ├── models
│ │ │ └── tags-api.model.js
│ │ │ └── tags.module.js
│ └── v2
│ │ ├── api-manager-map
│ │ ├── api-manager-map.module.js
│ │ └── constants
│ │ │ └── api-manager-map.constant.js
│ │ ├── blog
│ │ ├── blog.module.js
│ │ └── models
│ │ │ └── blog-api.model.js
│ │ ├── categories
│ │ ├── categories.module.js
│ │ └── models
│ │ │ └── categories-api.model.js
│ │ ├── media
│ │ ├── media.module.js
│ │ └── models
│ │ │ └── media-api.model.js
│ │ ├── posts
│ │ ├── models
│ │ │ └── posts-api.model.js
│ │ └── posts.module.js
│ │ └── tags
│ │ ├── models
│ │ └── tags-api.model.js
│ │ └── tags.module.js
│ ├── components
│ ├── ajax
│ │ ├── ajax.model.js
│ │ ├── ajax.module.js
│ │ └── ajax.tests.js
│ ├── api-manager
│ │ ├── api-manager.model.js
│ │ └── api-manager.module.js
│ ├── blog
│ │ ├── blog.model.js
│ │ └── blog.module.js
│ ├── featured-image
│ │ ├── featured-image-directive.controller.js
│ │ ├── featured-image.directive.js
│ │ ├── featured-image.module.js
│ │ └── featured-image.template.html
│ ├── frontpress-provider
│ │ ├── frontpress-empty.constant.js
│ │ ├── frontpress-provider.module.js
│ │ └── frontpress.model.js
│ ├── full-post
│ │ ├── categories-list
│ │ │ ├── full-post-categories-list-directive.controller.js
│ │ │ ├── full-post-categories-list.directive.js
│ │ │ └── full-post-categories-list.template.html
│ │ ├── content
│ │ │ ├── full-post-author-name.directive.js
│ │ │ ├── full-post-author-name.template.html
│ │ │ ├── full-post-content-v1.template.html
│ │ │ ├── full-post-content-v2.template.html
│ │ │ ├── full-post-content.directive.js
│ │ │ ├── full-post-title-v1.template.html
│ │ │ ├── full-post-title-v2.template.html
│ │ │ └── full-post-title.directive.js
│ │ ├── full-post-directive.controller.js
│ │ ├── full-post.directive.js
│ │ ├── full-post.model.js
│ │ ├── full-post.module.js
│ │ ├── full-post.template.html
│ │ ├── generic
│ │ │ └── full-post-generic-directive.controller.js
│ │ └── tags-list
│ │ │ ├── full-post-tags-list-directive.controller.js
│ │ │ ├── full-post-tags-list.directive.js
│ │ │ └── full-post-tags-list.template.html
│ ├── infinite-scroll
│ │ └── infinite-scroll.value.js
│ ├── list-posts
│ │ ├── excerpt
│ │ │ ├── list-posts-excerpt-v1.template.html
│ │ │ ├── list-posts-excerpt-v2.template.html
│ │ │ └── list-posts-excerpt.directive.js
│ │ ├── list-posts-directive.controller.js
│ │ ├── list-posts-generic-directive.controller.js
│ │ ├── list-posts.directive.js
│ │ ├── list-posts.model.js
│ │ ├── list-posts.module.js
│ │ ├── list-posts.template.html
│ │ └── title
│ │ │ ├── list-posts-title-v1.template.html
│ │ │ ├── list-posts-title-v2.template.html
│ │ │ └── list-posts-title.directive.js
│ ├── page-head
│ │ ├── page-head.controller.js
│ │ ├── page-head.directive.js
│ │ ├── page-head.model.js
│ │ ├── page-head.module.js
│ │ └── page-head.template.html
│ ├── pagination
│ │ ├── pagination.controller.js
│ │ ├── pagination.directive.js
│ │ ├── pagination.model.js
│ │ ├── pagination.module.js
│ │ └── pagination.template.html
│ ├── post-date
│ │ ├── post-date-directive.controller.js
│ │ ├── post-date.directive.js
│ │ ├── post-date.module.js
│ │ └── post-date.template.html
│ ├── share
│ │ ├── share.controller.js
│ │ ├── share.directive.js
│ │ ├── share.model.js
│ │ ├── share.module.js
│ │ └── share.template.html
│ └── slugs-map
│ │ ├── slug-to-id.module.js
│ │ └── slugs-map.model.js
│ ├── filters
│ ├── filters.module.js
│ └── trust-as-html.filter.js
│ ├── frontpress.config.js
│ ├── frontpress.module.js
│ ├── frontpress.run.js
│ ├── sample-blog-main.controller.js
│ ├── sample-blog.config.js
│ ├── sample-blog.module.js
│ └── views
│ ├── category
│ ├── category-directive.controller.js
│ ├── category-route.controller.js
│ ├── category.directive.js
│ ├── category.module.js
│ └── category.template.html
│ ├── frontpress.views.module.js
│ ├── home
│ ├── home-directive.controller.js
│ ├── home-route.controller.js
│ ├── home.directive.js
│ ├── home.module.js
│ └── home.template.html
│ ├── post
│ ├── post-directive.controller.js
│ ├── post-route.controller.js
│ ├── post.directive.js
│ ├── post.module.js
│ ├── post.template.html
│ ├── tag-directive.controller.js
│ └── tag-route.controller.js
│ └── tag
│ ├── tag.directive.js
│ ├── tag.module.js
│ └── tag.template.html
└── tasks
├── build.js
├── connect.js
├── copy.js
├── default.js
├── init.js
├── inject.js
├── ngConfig.js
├── release.js
├── templateCache.js
└── watch.js
/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/.editorconfig
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/.gitignore
--------------------------------------------------------------------------------
/.jshintignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/.jshintignore
--------------------------------------------------------------------------------
/.jshintrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/.jshintrc
--------------------------------------------------------------------------------
/.nvmrc:
--------------------------------------------------------------------------------
1 | stable
2 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/.travis.yml
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/LICENSE.md
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/README.md
--------------------------------------------------------------------------------
/bower.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/bower.json
--------------------------------------------------------------------------------
/ci/compile.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/ci/compile.sh
--------------------------------------------------------------------------------
/ci/travis_deploy.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/ci/travis_deploy.sh
--------------------------------------------------------------------------------
/contributing.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/contributing.md
--------------------------------------------------------------------------------
/deploy_key.enc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/deploy_key.enc
--------------------------------------------------------------------------------
/frontpress.json.v1.sample:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/frontpress.json.v1.sample
--------------------------------------------------------------------------------
/frontpress.json.v2.sample:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/frontpress.json.v2.sample
--------------------------------------------------------------------------------
/gulpfile.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/gulpfile.js
--------------------------------------------------------------------------------
/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/karma.conf.js
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/package.json
--------------------------------------------------------------------------------
/release/frontpress.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/release/frontpress.js
--------------------------------------------------------------------------------
/release/frontpress.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/release/frontpress.min.js
--------------------------------------------------------------------------------
/release/frontpress.v1.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/release/frontpress.v1.js
--------------------------------------------------------------------------------
/release/frontpress.v1.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/release/frontpress.v1.min.js
--------------------------------------------------------------------------------
/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/index.html
--------------------------------------------------------------------------------
/src/js/apis/configs-to-params/configs-to-params.module.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 |
3 | angular.module("frontpress.apis.configs-to-params", []);
4 |
--------------------------------------------------------------------------------
/src/js/apis/configs-to-params/models/configs-to-params.model.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/configs-to-params/models/configs-to-params.model.js
--------------------------------------------------------------------------------
/src/js/apis/v1/api-manager-map/api-manager-map.module.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v1/api-manager-map/api-manager-map.module.js
--------------------------------------------------------------------------------
/src/js/apis/v1/api-manager-map/constants/api-manager-map.constant.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v1/api-manager-map/constants/api-manager-map.constant.js
--------------------------------------------------------------------------------
/src/js/apis/v1/blog/blog.module.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v1/blog/blog.module.js
--------------------------------------------------------------------------------
/src/js/apis/v1/blog/models/blog-api.model.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v1/blog/models/blog-api.model.js
--------------------------------------------------------------------------------
/src/js/apis/v1/categories/categories.module.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v1/categories/categories.module.js
--------------------------------------------------------------------------------
/src/js/apis/v1/categories/models/categories-api.model.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v1/categories/models/categories-api.model.js
--------------------------------------------------------------------------------
/src/js/apis/v1/media/media.module.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v1/media/media.module.js
--------------------------------------------------------------------------------
/src/js/apis/v1/media/models/media-api.model.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v1/media/models/media-api.model.js
--------------------------------------------------------------------------------
/src/js/apis/v1/posts/models/posts-api.model.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v1/posts/models/posts-api.model.js
--------------------------------------------------------------------------------
/src/js/apis/v1/posts/posts.module.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v1/posts/posts.module.js
--------------------------------------------------------------------------------
/src/js/apis/v1/tags/models/tags-api.model.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v1/tags/models/tags-api.model.js
--------------------------------------------------------------------------------
/src/js/apis/v1/tags/tags.module.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v1/tags/tags.module.js
--------------------------------------------------------------------------------
/src/js/apis/v2/api-manager-map/api-manager-map.module.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v2/api-manager-map/api-manager-map.module.js
--------------------------------------------------------------------------------
/src/js/apis/v2/api-manager-map/constants/api-manager-map.constant.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v2/api-manager-map/constants/api-manager-map.constant.js
--------------------------------------------------------------------------------
/src/js/apis/v2/blog/blog.module.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v2/blog/blog.module.js
--------------------------------------------------------------------------------
/src/js/apis/v2/blog/models/blog-api.model.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v2/blog/models/blog-api.model.js
--------------------------------------------------------------------------------
/src/js/apis/v2/categories/categories.module.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v2/categories/categories.module.js
--------------------------------------------------------------------------------
/src/js/apis/v2/categories/models/categories-api.model.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v2/categories/models/categories-api.model.js
--------------------------------------------------------------------------------
/src/js/apis/v2/media/media.module.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v2/media/media.module.js
--------------------------------------------------------------------------------
/src/js/apis/v2/media/models/media-api.model.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v2/media/models/media-api.model.js
--------------------------------------------------------------------------------
/src/js/apis/v2/posts/models/posts-api.model.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v2/posts/models/posts-api.model.js
--------------------------------------------------------------------------------
/src/js/apis/v2/posts/posts.module.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v2/posts/posts.module.js
--------------------------------------------------------------------------------
/src/js/apis/v2/tags/models/tags-api.model.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v2/tags/models/tags-api.model.js
--------------------------------------------------------------------------------
/src/js/apis/v2/tags/tags.module.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/apis/v2/tags/tags.module.js
--------------------------------------------------------------------------------
/src/js/components/ajax/ajax.model.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/components/ajax/ajax.model.js
--------------------------------------------------------------------------------
/src/js/components/ajax/ajax.module.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 |
3 | angular.module("frontpress.components.ajax", []);
4 |
--------------------------------------------------------------------------------
/src/js/components/ajax/ajax.tests.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/components/ajax/ajax.tests.js
--------------------------------------------------------------------------------
/src/js/components/api-manager/api-manager.model.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/components/api-manager/api-manager.model.js
--------------------------------------------------------------------------------
/src/js/components/api-manager/api-manager.module.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/components/api-manager/api-manager.module.js
--------------------------------------------------------------------------------
/src/js/components/blog/blog.model.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/components/blog/blog.model.js
--------------------------------------------------------------------------------
/src/js/components/blog/blog.module.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/components/blog/blog.module.js
--------------------------------------------------------------------------------
/src/js/components/featured-image/featured-image-directive.controller.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/components/featured-image/featured-image-directive.controller.js
--------------------------------------------------------------------------------
/src/js/components/featured-image/featured-image.directive.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/components/featured-image/featured-image.directive.js
--------------------------------------------------------------------------------
/src/js/components/featured-image/featured-image.module.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/components/featured-image/featured-image.module.js
--------------------------------------------------------------------------------
/src/js/components/featured-image/featured-image.template.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/js/components/frontpress-provider/frontpress-empty.constant.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/components/frontpress-provider/frontpress-empty.constant.js
--------------------------------------------------------------------------------
/src/js/components/frontpress-provider/frontpress-provider.module.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/components/frontpress-provider/frontpress-provider.module.js
--------------------------------------------------------------------------------
/src/js/components/frontpress-provider/frontpress.model.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/components/frontpress-provider/frontpress.model.js
--------------------------------------------------------------------------------
/src/js/components/full-post/categories-list/full-post-categories-list-directive.controller.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/components/full-post/categories-list/full-post-categories-list-directive.controller.js
--------------------------------------------------------------------------------
/src/js/components/full-post/categories-list/full-post-categories-list.directive.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/components/full-post/categories-list/full-post-categories-list.directive.js
--------------------------------------------------------------------------------
/src/js/components/full-post/categories-list/full-post-categories-list.template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/components/full-post/categories-list/full-post-categories-list.template.html
--------------------------------------------------------------------------------
/src/js/components/full-post/content/full-post-author-name.directive.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontpressorg/frontpress/HEAD/src/js/components/full-post/content/full-post-author-name.directive.js
--------------------------------------------------------------------------------
/src/js/components/full-post/content/full-post-author-name.template.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/js/components/full-post/content/full-post-content-v1.template.html:
--------------------------------------------------------------------------------
1 |