├── .github └── workflows │ ├── publish.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── MANIFEST.in ├── Makefile ├── README.md ├── RELEASE.md ├── lektor_atom.py ├── pyproject.toml ├── setup.cfg ├── tests ├── conftest.py ├── demo-project │ ├── Website.lektorproject │ ├── configs │ │ └── atom.ini │ ├── content │ │ ├── contents.lr │ │ ├── custom-blog │ │ │ ├── contents.lr │ │ │ ├── filtered_post │ │ │ │ └── contents.lr │ │ │ ├── page │ │ │ │ └── contents.lr │ │ │ ├── post1 │ │ │ │ └── contents.lr │ │ │ └── post2 │ │ │ │ └── contents.lr │ │ ├── typical-blog │ │ │ ├── contents.lr │ │ │ ├── post1 │ │ │ │ └── contents.lr │ │ │ └── post2 │ │ │ │ └── contents.lr │ │ └── typical-blog2 │ │ │ └── contents.lr │ ├── models │ │ ├── blog-post.ini │ │ ├── blog.ini │ │ ├── custom-blog-post.ini │ │ ├── custom-blog.ini │ │ └── page.ini │ └── templates │ │ ├── blog-post.html │ │ ├── blog.html │ │ ├── custom-blog-post.html │ │ ├── custom-blog.html │ │ └── page.html └── test_lektor_atom.py └── tox.ini /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | tox 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/RELEASE.md -------------------------------------------------------------------------------- /lektor_atom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/lektor_atom.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/demo-project/Website.lektorproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/tests/demo-project/Website.lektorproject -------------------------------------------------------------------------------- /tests/demo-project/configs/atom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/tests/demo-project/configs/atom.ini -------------------------------------------------------------------------------- /tests/demo-project/content/contents.lr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/demo-project/content/custom-blog/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/tests/demo-project/content/custom-blog/contents.lr -------------------------------------------------------------------------------- /tests/demo-project/content/custom-blog/filtered_post/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/tests/demo-project/content/custom-blog/filtered_post/contents.lr -------------------------------------------------------------------------------- /tests/demo-project/content/custom-blog/page/contents.lr: -------------------------------------------------------------------------------- 1 | _model: page 2 | -------------------------------------------------------------------------------- /tests/demo-project/content/custom-blog/post1/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/tests/demo-project/content/custom-blog/post1/contents.lr -------------------------------------------------------------------------------- /tests/demo-project/content/custom-blog/post2/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/tests/demo-project/content/custom-blog/post2/contents.lr -------------------------------------------------------------------------------- /tests/demo-project/content/typical-blog/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/tests/demo-project/content/typical-blog/contents.lr -------------------------------------------------------------------------------- /tests/demo-project/content/typical-blog/post1/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/tests/demo-project/content/typical-blog/post1/contents.lr -------------------------------------------------------------------------------- /tests/demo-project/content/typical-blog/post2/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/tests/demo-project/content/typical-blog/post2/contents.lr -------------------------------------------------------------------------------- /tests/demo-project/content/typical-blog2/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/tests/demo-project/content/typical-blog2/contents.lr -------------------------------------------------------------------------------- /tests/demo-project/models/blog-post.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/tests/demo-project/models/blog-post.ini -------------------------------------------------------------------------------- /tests/demo-project/models/blog.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/tests/demo-project/models/blog.ini -------------------------------------------------------------------------------- /tests/demo-project/models/custom-blog-post.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/tests/demo-project/models/custom-blog-post.ini -------------------------------------------------------------------------------- /tests/demo-project/models/custom-blog.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/tests/demo-project/models/custom-blog.ini -------------------------------------------------------------------------------- /tests/demo-project/models/page.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/demo-project/templates/blog-post.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/demo-project/templates/blog.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/demo-project/templates/custom-blog-post.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/demo-project/templates/custom-blog.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/demo-project/templates/page.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_lektor_atom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/tests/test_lektor_atom.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lektor/lektor-atom/HEAD/tox.ini --------------------------------------------------------------------------------