Pinax Project Blog Structure

Project-Level

pinax-blog
├── Pipfile
└── mysite
    ├── README.md
    ├── fixtures
    │   └── sites.json
    ├── manage.py
    ├── mysite
    │   ├── __init__.py
    │   ├── apps.py
    │   ├── context_processors.py
    │   ├── settings.py
    │   ├── templates
    │   │   ├── _account_bar.html
    │   │   ├── _footer.html
    │   │   ├── admin
    │   │   │   └── blog
    │   │   │       └── post
    │   │   │           └── change_form.html
    │   │   ├── homepage.html
    │   │   └── site_base.html
    │   ├── urls.py
    │   └── wsgi.py
    ├── package.json
    ├── requirements-blog.txt
    ├── requirements-zero.txt
    ├── requirements.txt
    ├── static
    │   ├── STATIC_README.md
    │   └── src
    │       ├── js
    │       │   ├── ajax.js
    │       │   ├── apps
    │       │   ├── index.js
    │       │   └── messages.js
    │       ├── scss
    │       └── tests
    └── tox.ini

App-Level

.local
├── bin
├── lib
└── share
    └── virtualenvs
        ├── pinax-blog
        │   ├── bin
        │   ├── include
        │   ├── lib
        │   │   └── python3.6
        │   │       ├── site-packages
        │   │       │   ├── pinax
        │   │       │   │   ├── __init__.py
        │   │       │   │   ├── __pycache__
        │   │       │   │   ├── blog
        │   │       │   │   │   ├── __init__.py
        │   │       │   │   │   ├── __pycache__
        │   │       │   │   │   ├── admin.py
        │   │       │   │   │   ├── apps.py
        │   │       │   │   │   ├── conf.py
        │   │       │   │   │   ├── context_processors.py
        │   │       │   │   │   ├── forms.py
        │   │       │   │   │   ├── hooks.py
        │   │       │   │   │   ├── managers.py
        │   │       │   │   │   ├── migrations
        │   │       │   │   │   ├── models.py
        │   │       │   │   │   ├── parsers
        │   │       │   │   │   │   ├── __init__.py
        │   │       │   │   │   │   ├── __pycache__
        │   │       │   │   │   │   ├── creole_parser.py
        │   │       │   │   │   │   └── markdown_parser.py
        │   │       │   │   │   ├── receivers.py
        │   │       │   │   │   ├── signals.py
        │   │       │   │   │   ├── templates
        │   │       │   │   │   │   └── pinax
        │   │       │   │   │   │       └── blog
        │   │       │   │   │   │           ├── atom_entry.xml
        │   │       │   │   │   │           ├── atom_feed.xml
        │   │       │   │   │   │           ├── rss_feed.xml
        │   │       │   │   │   │           └── rss_item.xml
        │   │       │   │   │   ├── templatetags
        │   │       │   │   │   │   ├── __init__.py
        │   │       │   │   │   │   ├── __pycache__
        │   │       │   │   │   │   └── pinax_blog_tags.py
        │   │       │   │   │   ├── tests
        │   │       │   │   │   ├── urls.py
        │   │       │   │   │   ├── utils.py
        │   │       │   │   │   └── views.py
        │   │       │   │   ├── images
        │   │       │   │   ├── templates
        │   │       │   │   │   ├── __init__.py
        │   │       │   │   │   ├── __pycache__
        │   │       │   │   │   ├── apps.py
        │   │       │   │   │   ├── locale
        │   │       │   │   │   ├── management
        │   │       │   │   │   ├── templates
        │   │       │   │   │   │   ├── 404.html
        │   │       │   │   │   │   ├── 500.html
        │   │       │   │   │   │   ├── _account_bar.html
        │   │       │   │   │   │   ├── _messages.html
        │   │       │   │   │   │   ├── _nav.html
        │   │       │   │   │   │   ├── base.html
        │   │       │   │   │   │   ├── pagination
        │   │       │   │   │   │   │   └── _pagination.html
        │   │       │   │   │   │   ├── pinax
        │   │       │   │   │   │   │   ├── blog
        │   │       │   │   │   │   │   │   ├── blog_base.html
        │   │       │   │   │   │   │   │   ├── blog_list.html
        │   │       │   │   │   │   │   │   ├── blog_post.html
        │   │       │   │   │   │   │   │   ├── dateline.html
        │   │       │   │   │   │   │   │   └── dateline_stale.html
        │   │       │   │   │   │   ├── site_base.html
        │   │       │   │   │   │   └── subnav_base.html
        │   │       │   │   │   └── tests
        │   │       │   │   └── webanalytics
        │   │       │   │       └── tests

Relevant Project Files

Project Structure

Name Description
README.md
fixtures/sites.json
mysite/apps.py
mysite/context_processors.py
mysite/settings.py
mysite/templates/_account_bar.html
mysite/templates/_footer.html
mysite/templates/admin/blog/post/change_form.html
mysite/templates/homepage.html
mysite/templates/site_base.html
mysite/urls.py
mysite/wsgi.py
static/src/js/ajax.js
static/src/js/apps/
static/src/js/index.js
static/src/js/messages.js
static/src/scss/
static/src/tests/

Relevant App Files

Project Structure

Name Description
pinax/blog/
pinax/blog/admin.py
pinax/blog/apps.py
pinax/blog/conf.py
pinax/blog/context_processors.py
pinax/blog/forms.py
pinax/blog/hooks.py
pinax/blog/managers.py
pinax/blog/migrations
pinax/blog/models.py
pinax/blog/parsers/creole_parser.py
pinax/blog/parsers/markdown_parser.py
pinax/blog/receivers.py
pinax/blog/signals.py
pinax/blog/templates/
pinax/blog/templates/pinax/blog/atom_entry.xml
pinax/blog/templates/pinax/blog/atom_feed.xml
pinax/blog/templates/pinax/blog/rss_feed.xml
pinax/blog/templates/pinax/blog/rss_item.xml
pinax/blog/templatetags/pinax_blog_tags.py
pinax/blog/urls.py
pinax/blog/utils.py
pinax/blog/views.py
pinax/images/
pinax/templates/apps.py
pinax/templates/locale/
pinax/templates/management/
pinax/templates/templates/404.html
pinax/templates/templates/500.html
pinax/templates/templates/_account_bar.html
pinax/templates/templates/_messages.html
pinax/templates/templates/_nav.html
pinax/templates/templates/base.html
pinax/templates/templates/pagination/_pagination.html
pinax/templates/templates/pinax/blog/blog_base.html
pinax/templates/templates/pinax/blog/blog_list.html
pinax/templates/templates/pinax/blog/blog_post.html
pinax/templates/templates/pinax/blog/dateline.html
pinax/templates/templates/pinax/blog/dateline_stale.html
pinax/templates/templates/site_base.html
pinax/templates/templates/subnav_base.html
pinax/webanalytics/

results matching ""

    No results matching ""