Sha256: 4b057c424a6d56eee42e558e138c93287f53b8f701c3df9c10a92b506cae8d26

Contents?: true

Size: 1.62 KB

Versions: 5

Compression:

Stored size: 1.62 KB

Contents

templates                     The first "default theme" - more later
├── README                    This file
├── about.html                An "about" file (will move)
├── assets                    Assets for entire view (blog)
│   ├── application.css       "Global" CSS
│   ├── favicon.ico           Favicon
│   └── ...                   Other files later, images, etc.
├── blog                      ** The whole template for this view (blog)
│   ├── _postentry.lt3        Used repeatedly in list of blog posts
│   ├── generate.lt3          The "main wrapper" that actually generates everything
│   ├── index.lt3             The main "user editable" portion of the template
│   ├── navbar.lt3            The navigation bar
│   └── sidebar               The sidebar (which may include different things)
│       ├── ad.lt3              Code to generate an advertisement
│       ├── calendar.lt3        Code for a calendar
│       ├── news.lt3            Recent news
│       └── tag-cloud.lt3       Tag cloud (generated automatically of course)
├── global.lt3                Some global settings
├── head.lt3                  A standard <head> section
├── meta.lt3                  Standard meta tags
└── post                
    ├── head.lt3              Specific to post (adds to higher-level head)
    ├── generate.lt3          The "main wrapper" that actually generates the post
    └── index.lt3             The main "user editable" portion of the post template

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
runeblog-0.1.91 themes/standard/README
runeblog-0.1.90 themes/standard/README
runeblog-0.1.89 themes/standard/README
runeblog-0.1.88 themes/standard/README
runeblog-0.1.86 themes/standard/README