Topic: few categories

Hi guys. I have a question. It`s  possible to show few categories? For example, I have 3 folder in "content" folder like a "notes", "article" and "media". How I can show this categories in index page?

Thanks )

2 2014-03-04 02:20:59 (edited by tovic Today 00:17:30)

Re: few categories

Create index.md file for each folder after content folder with content of this:

Title: Your Sub-Pages Title
Description: Lorem ipsum dolor sit amet.
Template: blog
----

So…

→ /content/
    → index.md
    → 404.md
    → /notes/
        → index.md
        → another-post-1.md
        → another-post-2.md
    → /article/
        → index.md
        → another-post-1.md
        → another-post-2.md
    → /media/
        → index.md
        → another-post-1.md
        → another-post-2.md

In your content > index.md file, change its content to this:

Title: Test Title
Description: List of few categories...
Template: custom-index
----

Then create new theme file custom-index.html



runAction('theme_content_before'); ?> getPage($path); echo '

' . $file['title'] . '

'; echo '

' . $file['description'] . '

'; } ?> runAction('theme_content_after'); ?>
XSS Testing

tovic's Website

Re: few categories

Thanks for answer tovic) But I got something like this(

http://cl.ly/UFrA/Screen%20Shot%202014-03-05%20at%2021.38.00.png

what am I doing wrong?

4 Yesterday 23:54:21 (edited by tovic Today 00:16:39)

Re: few categories

When clicked, are they go to the correct page?

You have to edit each Title field in this file to create meaningful sub-page name:

→ /content/
    → index.md
    → 404.md
    → /notes/
        → index.md <=== this
        → another-post-1.md
        → another-post-2.md
    → /article/
        → index.md <=== this
        → another-post-1.md
        → another-post-2.md
    → /media/
        → index.md <=== this
        → another-post-1.md
        → another-post-2.md

PS: I have updated the file loop above. Please replace the old loop.

XSS Testing

tovic's Website