$ tree edit-here/
edit-here/
├── cache
│ ├── ArticlesGenerator-Readers
│ └── PagesGenerator-Readers
├── content
│ ├── images
│ │ └── settings.gif
│ └── pages
│ ├── apps.md
│ ├── basic.md
│ ├── faq.md
│ ├── get-in-touch.md
│ ├── index.md
│ ├── scopes.md
│ ├── security.md
│ ├── settings.md
│ ├── store.md
│ └── ui.md
├── develop_server.sh
├── fabfile.py
├── generate-pot
├── generate-translations
├── index.html
├── __init__.py
├── Makefile
├── pelicanconf.py
├── pelicanconf.pyc
├── po
│ ├── de.po
│ ├── es.po
│ ├── fr.po
│ ├── help.pot
│ ├── it.po
│ ├── pt.po
│ └── ro.po
├── publishconf.py
├── __pycache__
│ └── q-and-a.cpython-34.pyc
├── q-and-a.py
├── q-and-a.pyc
├── run-tests
├── tests
│ ├── test_files.py
│ ├── test_links.py
│ └── test_translations.py
├── themes
│ ├── phone
│ │ ├── static
│ │ │ ├── css
│ │ │ │ └── app.css
│ │ │ └── js
│ │ │ └── app.js
│ │ └── templates
│ │ ├── base.html
│ │ ├── index.html
│ │ └── page.html
│ └── web
│ ├── static
│ │ ├── css
│ │ │ ├── core-print.css
│ │ │ ├── global-responsive.css
│ │ │ ├── styles.css
│ │ │ └── ubuntu-styles.css
│ │ ├── img
│ │ │ ├── favicon.ico
│ │ │ └── logo-ubuntu-orange.svg
│ │ └── js
│ │ ├── core.js
│ │ ├── global.js
│ │ ├── plugins
│ │ │ ├── Imager.js
│ │ │ └── modernizr.2.7.1.js
│ │ ├── respond.min.js
│ │ ├── scratch.js
│ │ └── yui-combined.min.js
│ └── templates
│ ├── base.html
│ ├── _footer.html
│ ├── _header.html
│ ├── _head.html
│ ├── index.html
│ └── page.html
└── translations.py
20 directories, 62 files