Skip to content
Grav 2.0 is officially stable. Read the announcement →
Archive

Using Grav as a Magazine site

Started by Muut Archive 11 years ago · 2 replies · 426 views
11 years ago

I have now build one site using a Grav skeleton and I am getting the hang of it. Very cool! I have a magazine site and am thinking of moving it to a new CMS. They release about 12 articles every month and like a magazine, they release them all on the same day. Would it be practical to organize my magazine articles in a structure like:

magazine-articles
-2012
-January
-February...
-2013
-January
-February
-March...

I need to be able to teach writers how to admin and I think Markdown would be great if I made good templates to go along with it. But I need to keep it organized for them. Any advice?

11 years ago

It really depends on how you want to be able to display them. You can arrange them in pretty much any manner you wish, and use taxonomy to provide grouping/search capabilities. It sounds like what your proposing is good:

YAML
pages
- magazines
  - 2012
    - January
    - February
    - March
    - ...
  - 2013
  - 2014
  - 2015

Then in each actual magazine under the month, you have the articles and a 'landing page' that contains some taxonomy like:

YAML
taxonomy:
  year: 2012 
  month: January
  category: magazine
  tags: [foo, bar, baz]

That way you will be able to show all magazines in one list if you create a collection with category=magazine, or all magazines in 2012 with a collection of year=2012 etc.

11 years ago

Right, makes perfect sense. Thanks for the reply and I am happy to know I am on the right path with my thinking.

Suggested topics

Topic Participants Replies Views Activity
Archive · by Deleted User, 9 years ago
0 1323 9 years ago
Archive · by Muut Archive, 9 years ago
2 920 9 years ago
Archive · by Muut Archive, 9 years ago
2 4048 9 years ago
Archive · by Muut Archive, 9 years ago
1 2924 9 years ago
Archive · by Muut Archive, 9 years ago
3 1106 9 years ago