Muut Archive Legend
@Muut · Joined 9 years ago · 18337 posts · 3878 topics · 137 reputation
Badges
Recent posts
-
Is this forum included in Grav?
· 10 years ago
Well Muut is quite expensive for a forum, if you want basic functions like private messaging. Not to mention, when I look at this forum here, it's not very useful for long, extensive discussions over
-
Is this forum included in Grav?
· 11 years ago
After signing up for Muut, it's a one-liner to install the forum on your site: Read the blog post to see how it was done: http://getgrav.org/blog/forum-now-online
-
Is this forum included in Grav?
· 11 years ago
The forum is provided by Muut.com . There's no forum plugin for Grav (yet) as far as I know.
-
Is this forum included in Grav?
· 11 years ago
Is there a full feature forum plugin available also ?
-
How to depict schedules for a cinema site
· 10 years ago
{% set movies = page.find('/movies/' ~ path).collection %} helped me.
-
How to depict schedules for a cinema site
· 10 years ago
{% set current_year = now|date("Y") %} {% set current_week = now|date("W") %} {% set path = current_year ~ '-kw-' ~ current_week %} {% set all_shows = page.header.shows %} {% for each_show in all_s
-
How to depict schedules for a cinema site
· 10 years ago
This is movie.md and it's header has the following information: shows: - 2016-kw-12: thursday: ['15:15', '17:45', '20:30'] friday: ['15:15', '17:45', '20:30'] saturday: ['15:15', '17:45'
-
How to depict schedules for a cinema site
· 10 years ago
I'd store them in yaml format, in a user/config/cinema.yaml file, and reference it from the Twig that lists the shows
-
How to depict schedules for a cinema site
· 10 years ago
just wondering how to layout a cinema site (YAML-file-structure) ...
-
How to depict schedules for a cinema site
· 10 years ago
Hey Community! I'm asking myself how to structure and depict schedules for movies (in YAML) for a cinema site! Any thoughts? Advice? How to go about this?