Strange Page Behaviour when using the Blog Index Custom Template
Permalink 1 user found helpful
There's a typo within the blog_index.php file at line 58
for fresh Concrete5.4.2 installations, this file can be found at:
my_concrete_site\concrete\blocks\page_list\templates\
or for an updated site at:
my_concrete_site\updates\concrete5.4.2\concrete\blocks\page_list\templates\
The entry:
Should read:
Note the quot at the end.
This caused me some grief with div hierarchy and sliding content when setting a block to use the Blog Index custom template. I hope this helps someone.
for fresh Concrete5.4.2 installations, this file can be found at:
my_concrete_site\concrete\blocks\page_list\templates\
or for an updated site at:
my_concrete_site\updates\concrete5.4.2\concrete\blocks\page_list\templates\
The entry:
title="<?php echo t('RSS Feed')?>/>
Should read:
title="<?php echo t('RSS Feed')?>"/>
Note the quot at the end.
This caused me some grief with div hierarchy and sliding content when setting a block to use the Blog Index custom template. I hope this helps someone.