├── .gitignore ├── MANIFEST.in ├── README.md ├── dexy_templates ├── __init__.py ├── code-journal-html-python-template │ ├── _template.html │ ├── code001.py │ ├── dexy.conf │ ├── dexy.yaml │ ├── journal.html │ ├── pygments.css │ ├── zp-compressed.css │ └── zp-print.css ├── code-journal-html-r-template │ ├── _template.html │ ├── code001.R │ ├── dexy.conf │ ├── dexy.yaml │ ├── journal.html │ ├── zp-compressed.css │ └── zp-print.css ├── code-journal-markdown-matplotlib-template │ ├── _template.html │ ├── code001.py │ ├── code002.py │ ├── data.csv │ ├── dexy.conf │ ├── dexy.yaml │ ├── index.md │ ├── zp-compressed.css │ └── zp-print.css ├── code-journal-markdown-r-template │ ├── _template.html │ ├── code001.R │ ├── dexy.conf │ ├── dexy.yaml │ ├── index.md │ ├── zp-compressed.css │ └── zp-print.css ├── code-journal-textile-ruby-template │ ├── code001.rb │ ├── code002.rb │ ├── dexy.yaml │ └── journal.textile ├── django-polls-template │ ├── .gitignore │ ├── _pyg.html │ ├── _template.html │ ├── dexy.conf │ ├── dexy.yaml │ ├── docs │ │ ├── analyze.R │ │ ├── creating-django-projects.rst │ │ ├── developer.rst │ │ ├── pastie.css │ │ └── screenshots.js │ ├── example_com │ │ ├── admin.sql │ │ ├── example_com │ │ │ ├── __init__.py │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ ├── manage.py │ │ ├── polls │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ ├── base.html │ │ │ │ └── polls │ │ │ │ │ ├── detail.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── results.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ └── templates │ │ │ ├── 404.html │ │ │ ├── 500.html │ │ │ └── admin │ │ │ └── base_site.html │ └── scripts │ │ ├── create-project.sh │ │ ├── reset-server.sh │ │ ├── run-tests.sh │ │ └── stop-server.sh ├── latex-article-python-template │ ├── _footer.tex │ ├── _header.tex │ ├── article.tex │ ├── code001.py │ └── dexy.yaml ├── latex-article-r-template │ ├── _footer.tex │ ├── _header.tex │ ├── article.tex │ ├── code001.R │ └── dexy.yaml ├── latex-beamer-r-template │ ├── code001.R │ ├── dexy.yaml │ └── slides.tex ├── latex-book-r-template │ ├── README │ ├── book.tex │ ├── chapters │ │ ├── chapter-1.tex │ │ ├── chapter-2.tex │ │ ├── code001.R │ │ └── code002.R │ ├── dexy.conf │ └── dexy.yaml ├── pander-template │ ├── README │ ├── dexy.rst │ ├── dexy.yaml │ ├── example.R │ └── report.md ├── python-modules-template │ ├── dexy.yaml │ ├── example1.py │ ├── example2 │ │ └── use-fib.py │ ├── howto.md │ └── sharedcode │ │ ├── __init__.py │ │ └── fibonacci.py ├── tufte-article-latex-r-template │ ├── _footer.tex │ ├── _header.tex │ ├── article.tex │ ├── code001.R │ └── dexy.yaml ├── tufte-article-markdown-r-template │ ├── _footer.tex │ ├── _header.tex │ ├── article.md │ ├── code001.R │ └── dexy.yaml ├── website-html5-altitude-template │ ├── README │ ├── _template.html │ ├── about │ │ ├── _head_body_template.html │ │ ├── _introspect_template.html │ │ ├── _simple_template.html │ │ ├── dexy.yaml │ │ ├── head_body_content.html │ │ ├── index.md │ │ └── simple_content.html │ ├── css │ │ ├── 5grid │ │ │ ├── core-1000px.css │ │ │ ├── core-1200px.css │ │ │ ├── core-desktop.css │ │ │ ├── core-fluid.css │ │ │ ├── core-mobile.css │ │ │ ├── core-noscript.css │ │ │ ├── core.css │ │ │ ├── html5shiv.js │ │ │ ├── init.js │ │ │ ├── jquery.js │ │ │ ├── mobileUI-beveled.css │ │ │ └── mobileUI-flat.css │ │ ├── pygments.css │ │ ├── style-1000px.css │ │ ├── style-desktop.css │ │ ├── style-mobile.css │ │ └── style.css │ ├── dexy.conf │ ├── dexy.yaml │ ├── images │ │ ├── img01.jpg │ │ ├── img02.jpg │ │ ├── img03.jpg │ │ ├── img04.png │ │ ├── img05.jpg │ │ ├── img06.jpg │ │ ├── img07.jpg │ │ ├── img08.jpg │ │ ├── img09.jpg │ │ ├── img10.jpg │ │ ├── img11.jpg │ │ ├── img12.jpg │ │ ├── img13.jpg │ │ ├── img14.jpg │ │ ├── img15.jpg │ │ ├── img16.jpg │ │ ├── img17.jpg │ │ ├── img17.png │ │ ├── img18.png │ │ ├── img19.jpg │ │ ├── img20.jpg │ │ └── img21.jpg │ ├── index.html │ └── templates │ │ ├── _banner.html │ │ ├── _base.html │ │ ├── _footer.html │ │ ├── _header.html │ │ ├── _home_template.html │ │ ├── _logo.html │ │ └── _menu.html ├── website-simple-template │ ├── _template.html │ ├── dexy.conf │ ├── dexy.yaml │ └── index.rst └── website-template │ ├── _debug.html │ ├── _sitemap.html │ ├── _template.html │ ├── about │ └── index.rst │ ├── contact │ └── index.rst │ ├── debug.rst │ ├── dexy.conf │ ├── dexy.yaml │ ├── help │ └── index.rst │ ├── index.rst │ ├── services │ └── index.rst │ └── sitemap.rst └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | graft dexy_templates 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Project templates to get you started using Dexy. 2 | -------------------------------------------------------------------------------- /dexy_templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/__init__.py -------------------------------------------------------------------------------- /dexy_templates/code-journal-html-python-template/_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-html-python-template/_template.html -------------------------------------------------------------------------------- /dexy_templates/code-journal-html-python-template/code001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-html-python-template/code001.py -------------------------------------------------------------------------------- /dexy_templates/code-journal-html-python-template/dexy.conf: -------------------------------------------------------------------------------- 1 | reports: 'ws run' 2 | -------------------------------------------------------------------------------- /dexy_templates/code-journal-html-python-template/dexy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-html-python-template/dexy.yaml -------------------------------------------------------------------------------- /dexy_templates/code-journal-html-python-template/journal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-html-python-template/journal.html -------------------------------------------------------------------------------- /dexy_templates/code-journal-html-python-template/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-html-python-template/pygments.css -------------------------------------------------------------------------------- /dexy_templates/code-journal-html-python-template/zp-compressed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-html-python-template/zp-compressed.css -------------------------------------------------------------------------------- /dexy_templates/code-journal-html-python-template/zp-print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-html-python-template/zp-print.css -------------------------------------------------------------------------------- /dexy_templates/code-journal-html-r-template/_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-html-r-template/_template.html -------------------------------------------------------------------------------- /dexy_templates/code-journal-html-r-template/code001.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-html-r-template/code001.R -------------------------------------------------------------------------------- /dexy_templates/code-journal-html-r-template/dexy.conf: -------------------------------------------------------------------------------- 1 | reports: 'ws run' 2 | -------------------------------------------------------------------------------- /dexy_templates/code-journal-html-r-template/dexy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-html-r-template/dexy.yaml -------------------------------------------------------------------------------- /dexy_templates/code-journal-html-r-template/journal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-html-r-template/journal.html -------------------------------------------------------------------------------- /dexy_templates/code-journal-html-r-template/zp-compressed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-html-r-template/zp-compressed.css -------------------------------------------------------------------------------- /dexy_templates/code-journal-html-r-template/zp-print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-html-r-template/zp-print.css -------------------------------------------------------------------------------- /dexy_templates/code-journal-markdown-matplotlib-template/_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-markdown-matplotlib-template/_template.html -------------------------------------------------------------------------------- /dexy_templates/code-journal-markdown-matplotlib-template/code001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-markdown-matplotlib-template/code001.py -------------------------------------------------------------------------------- /dexy_templates/code-journal-markdown-matplotlib-template/code002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-markdown-matplotlib-template/code002.py -------------------------------------------------------------------------------- /dexy_templates/code-journal-markdown-matplotlib-template/data.csv: -------------------------------------------------------------------------------- 1 | 1,1 2 | 2,4 3 | 3,9 4 | -------------------------------------------------------------------------------- /dexy_templates/code-journal-markdown-matplotlib-template/dexy.conf: -------------------------------------------------------------------------------- 1 | reports: 'ws run' 2 | -------------------------------------------------------------------------------- /dexy_templates/code-journal-markdown-matplotlib-template/dexy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-markdown-matplotlib-template/dexy.yaml -------------------------------------------------------------------------------- /dexy_templates/code-journal-markdown-matplotlib-template/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-markdown-matplotlib-template/index.md -------------------------------------------------------------------------------- /dexy_templates/code-journal-markdown-matplotlib-template/zp-compressed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-markdown-matplotlib-template/zp-compressed.css -------------------------------------------------------------------------------- /dexy_templates/code-journal-markdown-matplotlib-template/zp-print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-markdown-matplotlib-template/zp-print.css -------------------------------------------------------------------------------- /dexy_templates/code-journal-markdown-r-template/_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-markdown-r-template/_template.html -------------------------------------------------------------------------------- /dexy_templates/code-journal-markdown-r-template/code001.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-markdown-r-template/code001.R -------------------------------------------------------------------------------- /dexy_templates/code-journal-markdown-r-template/dexy.conf: -------------------------------------------------------------------------------- 1 | reports: 'ws run' 2 | -------------------------------------------------------------------------------- /dexy_templates/code-journal-markdown-r-template/dexy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-markdown-r-template/dexy.yaml -------------------------------------------------------------------------------- /dexy_templates/code-journal-markdown-r-template/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-markdown-r-template/index.md -------------------------------------------------------------------------------- /dexy_templates/code-journal-markdown-r-template/zp-compressed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-markdown-r-template/zp-compressed.css -------------------------------------------------------------------------------- /dexy_templates/code-journal-markdown-r-template/zp-print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-markdown-r-template/zp-print.css -------------------------------------------------------------------------------- /dexy_templates/code-journal-textile-ruby-template/code001.rb: -------------------------------------------------------------------------------- 1 | x = 5 2 | y = 7 3 | 4 | puts x * y 5 | 6 | -------------------------------------------------------------------------------- /dexy_templates/code-journal-textile-ruby-template/code002.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-textile-ruby-template/code002.rb -------------------------------------------------------------------------------- /dexy_templates/code-journal-textile-ruby-template/dexy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-textile-ruby-template/dexy.yaml -------------------------------------------------------------------------------- /dexy_templates/code-journal-textile-ruby-template/journal.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/code-journal-textile-ruby-template/journal.textile -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/.gitignore -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/_pyg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/_pyg.html -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/_template.html -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/dexy.conf: -------------------------------------------------------------------------------- 1 | outputroot: docs 2 | loglevel: DEBUG 3 | reports: ws run 4 | -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/dexy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/dexy.yaml -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/docs/analyze.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/docs/analyze.R -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/docs/creating-django-projects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/docs/creating-django-projects.rst -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/docs/developer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/docs/developer.rst -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/docs/pastie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/docs/pastie.css -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/docs/screenshots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/docs/screenshots.js -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/example_com/admin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/example_com/admin.sql -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/example_com/example_com/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/example_com/example_com/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/example_com/example_com/settings.py -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/example_com/example_com/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/example_com/example_com/urls.py -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/example_com/example_com/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/example_com/example_com/wsgi.py -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/example_com/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/example_com/manage.py -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/example_com/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/example_com/polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/example_com/polls/admin.py -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/example_com/polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/example_com/polls/models.py -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/example_com/polls/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/example_com/polls/templates/base.html -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/example_com/polls/templates/polls/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/example_com/polls/templates/polls/detail.html -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/example_com/polls/templates/polls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/example_com/polls/templates/polls/index.html -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/example_com/polls/templates/polls/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/example_com/polls/templates/polls/results.html -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/example_com/polls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/example_com/polls/tests.py -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/example_com/polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/example_com/polls/urls.py -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/example_com/polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/example_com/polls/views.py -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/example_com/templates/404.html: -------------------------------------------------------------------------------- 1 | not found (404) 2 | -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/example_com/templates/500.html: -------------------------------------------------------------------------------- 1 | server error (500) 2 | -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/example_com/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/example_com/templates/admin/base_site.html -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/scripts/create-project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/scripts/create-project.sh -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/scripts/reset-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/scripts/reset-server.sh -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/scripts/run-tests.sh: -------------------------------------------------------------------------------- 1 | cd example_com 2 | python manage.py test polls 3 | -------------------------------------------------------------------------------- /dexy_templates/django-polls-template/scripts/stop-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/django-polls-template/scripts/stop-server.sh -------------------------------------------------------------------------------- /dexy_templates/latex-article-python-template/_footer.tex: -------------------------------------------------------------------------------- 1 | \end{document} 2 | -------------------------------------------------------------------------------- /dexy_templates/latex-article-python-template/_header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/latex-article-python-template/_header.tex -------------------------------------------------------------------------------- /dexy_templates/latex-article-python-template/article.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/latex-article-python-template/article.tex -------------------------------------------------------------------------------- /dexy_templates/latex-article-python-template/code001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/latex-article-python-template/code001.py -------------------------------------------------------------------------------- /dexy_templates/latex-article-python-template/dexy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/latex-article-python-template/dexy.yaml -------------------------------------------------------------------------------- /dexy_templates/latex-article-r-template/_footer.tex: -------------------------------------------------------------------------------- 1 | \end{document} 2 | -------------------------------------------------------------------------------- /dexy_templates/latex-article-r-template/_header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/latex-article-r-template/_header.tex -------------------------------------------------------------------------------- /dexy_templates/latex-article-r-template/article.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/latex-article-r-template/article.tex -------------------------------------------------------------------------------- /dexy_templates/latex-article-r-template/code001.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/latex-article-r-template/code001.R -------------------------------------------------------------------------------- /dexy_templates/latex-article-r-template/dexy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/latex-article-r-template/dexy.yaml -------------------------------------------------------------------------------- /dexy_templates/latex-beamer-r-template/code001.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/latex-beamer-r-template/code001.R -------------------------------------------------------------------------------- /dexy_templates/latex-beamer-r-template/dexy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/latex-beamer-r-template/dexy.yaml -------------------------------------------------------------------------------- /dexy_templates/latex-beamer-r-template/slides.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/latex-beamer-r-template/slides.tex -------------------------------------------------------------------------------- /dexy_templates/latex-book-r-template/README: -------------------------------------------------------------------------------- 1 | The xtable package must be installed in your R distribution. 2 | -------------------------------------------------------------------------------- /dexy_templates/latex-book-r-template/book.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/latex-book-r-template/book.tex -------------------------------------------------------------------------------- /dexy_templates/latex-book-r-template/chapters/chapter-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/latex-book-r-template/chapters/chapter-1.tex -------------------------------------------------------------------------------- /dexy_templates/latex-book-r-template/chapters/chapter-2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/latex-book-r-template/chapters/chapter-2.tex -------------------------------------------------------------------------------- /dexy_templates/latex-book-r-template/chapters/code001.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/latex-book-r-template/chapters/code001.R -------------------------------------------------------------------------------- /dexy_templates/latex-book-r-template/chapters/code002.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/latex-book-r-template/chapters/code002.R -------------------------------------------------------------------------------- /dexy_templates/latex-book-r-template/dexy.conf: -------------------------------------------------------------------------------- 1 | loglevel: DEBUG 2 | -------------------------------------------------------------------------------- /dexy_templates/latex-book-r-template/dexy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/latex-book-r-template/dexy.yaml -------------------------------------------------------------------------------- /dexy_templates/pander-template/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/pander-template/README -------------------------------------------------------------------------------- /dexy_templates/pander-template/dexy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/pander-template/dexy.rst -------------------------------------------------------------------------------- /dexy_templates/pander-template/dexy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/pander-template/dexy.yaml -------------------------------------------------------------------------------- /dexy_templates/pander-template/example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/pander-template/example.R -------------------------------------------------------------------------------- /dexy_templates/pander-template/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/pander-template/report.md -------------------------------------------------------------------------------- /dexy_templates/python-modules-template/dexy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/python-modules-template/dexy.yaml -------------------------------------------------------------------------------- /dexy_templates/python-modules-template/example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/python-modules-template/example1.py -------------------------------------------------------------------------------- /dexy_templates/python-modules-template/example2/use-fib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/python-modules-template/example2/use-fib.py -------------------------------------------------------------------------------- /dexy_templates/python-modules-template/howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/python-modules-template/howto.md -------------------------------------------------------------------------------- /dexy_templates/python-modules-template/sharedcode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dexy_templates/python-modules-template/sharedcode/fibonacci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/python-modules-template/sharedcode/fibonacci.py -------------------------------------------------------------------------------- /dexy_templates/tufte-article-latex-r-template/_footer.tex: -------------------------------------------------------------------------------- 1 | \end{document} 2 | -------------------------------------------------------------------------------- /dexy_templates/tufte-article-latex-r-template/_header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/tufte-article-latex-r-template/_header.tex -------------------------------------------------------------------------------- /dexy_templates/tufte-article-latex-r-template/article.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/tufte-article-latex-r-template/article.tex -------------------------------------------------------------------------------- /dexy_templates/tufte-article-latex-r-template/code001.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/tufte-article-latex-r-template/code001.R -------------------------------------------------------------------------------- /dexy_templates/tufte-article-latex-r-template/dexy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/tufte-article-latex-r-template/dexy.yaml -------------------------------------------------------------------------------- /dexy_templates/tufte-article-markdown-r-template/_footer.tex: -------------------------------------------------------------------------------- 1 | \end{document} 2 | -------------------------------------------------------------------------------- /dexy_templates/tufte-article-markdown-r-template/_header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/tufte-article-markdown-r-template/_header.tex -------------------------------------------------------------------------------- /dexy_templates/tufte-article-markdown-r-template/article.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/tufte-article-markdown-r-template/article.md -------------------------------------------------------------------------------- /dexy_templates/tufte-article-markdown-r-template/code001.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/tufte-article-markdown-r-template/code001.R -------------------------------------------------------------------------------- /dexy_templates/tufte-article-markdown-r-template/dexy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/tufte-article-markdown-r-template/dexy.yaml -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/README -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/_template.html -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/about/_head_body_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/about/_head_body_template.html -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/about/_introspect_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/about/_introspect_template.html -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/about/_simple_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/about/_simple_template.html -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/about/dexy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/about/dexy.yaml -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/about/head_body_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/about/head_body_content.html -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/about/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/about/index.md -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/about/simple_content.html: -------------------------------------------------------------------------------- 1 |

This is some simple content.

2 | -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/css/5grid/core-1000px.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/css/5grid/core-1000px.css -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/css/5grid/core-1200px.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/css/5grid/core-1200px.css -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/css/5grid/core-desktop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/css/5grid/core-desktop.css -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/css/5grid/core-fluid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/css/5grid/core-fluid.css -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/css/5grid/core-mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/css/5grid/core-mobile.css -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/css/5grid/core-noscript.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/css/5grid/core-noscript.css -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/css/5grid/core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/css/5grid/core.css -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/css/5grid/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/css/5grid/html5shiv.js -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/css/5grid/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/css/5grid/init.js -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/css/5grid/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/css/5grid/jquery.js -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/css/5grid/mobileUI-beveled.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/css/5grid/mobileUI-beveled.css -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/css/5grid/mobileUI-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/css/5grid/mobileUI-flat.css -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/css/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/css/pygments.css -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/css/style-1000px.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/css/style-1000px.css -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/css/style-desktop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/css/style-desktop.css -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/css/style-mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/css/style-mobile.css -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/css/style.css -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/dexy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/dexy.conf -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/dexy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/dexy.yaml -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img01.jpg -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img02.jpg -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img03.jpg -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img04.png -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img05.jpg -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img06.jpg -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img07.jpg -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img08.jpg -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img09.jpg -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img10.jpg -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img11.jpg -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img12.jpg -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img13.jpg -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img14.jpg -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img15.jpg -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img16.jpg -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img17.jpg -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img17.png -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img18.png -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img19.jpg -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img20.jpg -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/images/img21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/images/img21.jpg -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/index.html -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/templates/_banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/templates/_banner.html -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/templates/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/templates/_base.html -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/templates/_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/templates/_footer.html -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/templates/_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/templates/_header.html -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/templates/_home_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/templates/_home_template.html -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/templates/_logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/templates/_logo.html -------------------------------------------------------------------------------- /dexy_templates/website-html5-altitude-template/templates/_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-html5-altitude-template/templates/_menu.html -------------------------------------------------------------------------------- /dexy_templates/website-simple-template/_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-simple-template/_template.html -------------------------------------------------------------------------------- /dexy_templates/website-simple-template/dexy.conf: -------------------------------------------------------------------------------- 1 | reports: 'ws' 2 | loglevel: DEBUG 3 | -------------------------------------------------------------------------------- /dexy_templates/website-simple-template/dexy.yaml: -------------------------------------------------------------------------------- 1 | .rst|jinja|rstbody 2 | -------------------------------------------------------------------------------- /dexy_templates/website-simple-template/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-simple-template/index.rst -------------------------------------------------------------------------------- /dexy_templates/website-template/_debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-template/_debug.html -------------------------------------------------------------------------------- /dexy_templates/website-template/_sitemap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-template/_sitemap.html -------------------------------------------------------------------------------- /dexy_templates/website-template/_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-template/_template.html -------------------------------------------------------------------------------- /dexy_templates/website-template/about/index.rst: -------------------------------------------------------------------------------- 1 | This is the about page. 2 | -------------------------------------------------------------------------------- /dexy_templates/website-template/contact/index.rst: -------------------------------------------------------------------------------- 1 | Here is how to contact us. 2 | -------------------------------------------------------------------------------- /dexy_templates/website-template/debug.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dexy_templates/website-template/dexy.conf: -------------------------------------------------------------------------------- 1 | reports: 'ws run' 2 | loglevel: DEBUG 3 | -------------------------------------------------------------------------------- /dexy_templates/website-template/dexy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-template/dexy.yaml -------------------------------------------------------------------------------- /dexy_templates/website-template/help/index.rst: -------------------------------------------------------------------------------- 1 | Here is how to get help. 2 | -------------------------------------------------------------------------------- /dexy_templates/website-template/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/dexy_templates/website-template/index.rst -------------------------------------------------------------------------------- /dexy_templates/website-template/services/index.rst: -------------------------------------------------------------------------------- 1 | This is the services page. 2 | -------------------------------------------------------------------------------- /dexy_templates/website-template/sitemap.rst: -------------------------------------------------------------------------------- 1 | Here is a sitemap. 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananelson/dexy-templates/HEAD/setup.py --------------------------------------------------------------------------------