Muut Archive Legend
@Muut · Joined 9 years ago · 18337 posts · 3878 topics · 137 reputation
Badges
Recent posts
-
Category in my blog routes
· 9 years ago
Thanks!
-
Category in my blog routes
· 10 years ago
You can create whatever folder structure you want. The URLs will map to your folder structure. Routing can help out. If you want it purely dynamic, then you'll have to do some coding. Start with Page
-
Category in my blog routes
· 10 years ago
Hi! I will to create the following routes for my blog /blog/post (for posts without category) /blog/[category]/post (for posts with a category) You cant help me? Regards
-
Footer Layout
· 9 years ago
Thank you so much! This is exactly what I need.
-
Footer Layout
· 9 years ago
I take it you want to loop over pages (visible ones), and split the result into batches. Then iterate over each page in a batch, and output a list of links (with names). Something like this: Batch wit
-
Footer Layout
· 9 years ago
Yes, but I believe my explanation of my desired result is not making it across. I need it to work with the navigation code. Thus being dynamic. When someone adds a new page it won't break the footer l
-
Footer Layout
· 9 years ago
So you are wanting to have equal height columns, with a list of links in each, three columns in total? The example from the TwigFiddle, cities2.twig, seems to do this as expected, apart from the links
-
Footer Layout
· 9 years ago
Yes, that would work if I could actually get the code above to work. I can not get the links returned from the navigation.html.twig to work with something like the example above. I've attached an exa
-
Footer Layout
· 9 years ago
Shouldn't you put the class="col-md-4" on th ul ?
-
Footer Layout
· 9 years ago
I would like to distribute my footer links into columns like this: {% for column in cities|batch(4, null) %} <ul> {% for city in column %} <li class="city-item"><a href="#"&