Concrete CMS already has an RSS block, but its a bit tired and inflexible. If you want to do more with an RSS feed you either need to get coding for a block template and possibly a controller override, or you can explore the possibilities with Universal Content Puller.
As an RSS feed will be external to the site, the Content Source to use will again be URL.
The examples on this page provide some basic pulling of RSS feeds. The examples List PIcker shows more advanced selection and display from the RSS feed.
To investigate the possibilities, we need an RSS feed. As we are all users of Concrete CMS, here we will use the Concrete CMS Blog.
The Multi Selector Content Transform can pick out items from XML data.
For display, The Multi Level List Content Display has the flexibility to display the pulled RSS in many ways.
Make frequent use of the Preview button to review the incoming data to the transform and display.
There is a little duplicated information. We don't need to use the title for both the heading and the first list item. We don't need to repeat the link with the Guid. So we add those items to the Filter section of the display.
As the RSS feed can be long, its an ideal place to explore the pagination capabilities of UCP. Here the pagination is set very low so we don't fill too much of this page.
By leaving out the block identity in the pagination, all variations of the RSS feed shown on this page will paginate together!
In the Advanced tab, the main settings we need are the Advanced Autolinker and to Render Image URLs as Images. An important point here is that the settings don't change the file size of images, just the maximum size they are displayed.
A necessary tweak is to add some css to prevent the images from getting out of control. More about adding css towards the end of this example.
.ucp-body img{ max-width:100%; }
By default, the various elements are shown in the sequence they are declared in the XML of the RSS feed. That can be changed by entering a Shuffle sequence for the second list level.
The version below has a Shuffle set to pubDate, link, description.
For a variation, the Level 2 list type can be set to Paragraphs + none.
As a side effect, the Level 2 items no longer have headings, so they can only be filtered and shuffled by number. Hence an intermediary step is to set Paragraphs + Number 1,2,3 to see the numbers of the items. Then make a note of the numbers to filter, below these are 1, 5 then change to Paragraphs + none for the finished list.
Having filtered, the numbers for shuffling are reset to a contiguous 1,2,3... Here we need to actually count from the start of our filtered numbers. The publication date is the 2nd item in this filtered list and the link is the 3rd item, so simply setting Shuffle to 2, 3 will achieve the desired effect.
Fri, 13 Dec 2024 16:11:00 +0000
www.concretecms.com/about/blog/intranets/digital-asset-management-software-is-a-must-have
This guide addresses the questions: What does DAM entail? Why is digital asset management important? How does DAM help organizations harness their content to build stronger brands and deliver superior customer experiences?Wed, 11 Dec 2024 23:04:00 +0000
www.concretecms.com/about/blog/devops/what-is-git-a-beginners-guide-to-version-control
This guide provides an introduction to Git, explaining its purpose, benefits, and basic usage for beginners. It covers installation, key commands, and FAQs to help readers get started with version control.We now have a few options for a readable RSS feed where we have complete control over what data is presented and the sequence it is shown.
Now we want to add a bit of style. Each item in the UCP list is assigned classes based on heading and position in the list, so styles could be added to the theme, or (slightly naughty) declared in an HTML block, or placed in a Header Extra Content attribute as we have done here.
The styles can be localised to a specific UCP block by adding a unique wrapper class in the Advanced tab of the edit dialog. In this case example-styled.
<style> .ucp-body img{ max-width:100%; } .ucp-body.example-styled .ucp-item-2-1{ font-size:80%; font-style:italic; } .ucp-body.example-styled img{ max-width: 250px; max-height: 200px; float: left; padding-right: 1em; padding-bottom: 1em; } </style>
Fri, 13 Dec 2024 16:11:00 +0000
www.concretecms.com/about/blog/intranets/digital-asset-management-software-is-a-must-have
This guide addresses the questions: What does DAM entail? Why is digital asset management important? How does DAM help organizations harness their content to build stronger brands and deliver superior customer experiences?Wed, 11 Dec 2024 23:04:00 +0000
www.concretecms.com/about/blog/devops/what-is-git-a-beginners-guide-to-version-control
This guide provides an introduction to Git, explaining its purpose, benefits, and basic usage for beginners. It covers installation, key commands, and FAQs to help readers get started with version control.Our next version of the Concrete CMS Blog RSS feed is similar to the above, but with expanders enabled on the item headings. A couple more changes were required, to configure the use <div> elements for the level 1 item bodies rather than <p> elements.
Creating a sidebar for a group of pages without messing about with stacks is an easy use-case for Universal Content Puller.
This sidebar is edited once, within the main addon page for Universal Content Puller.
It is then pulled into all UCP sub-pages using a UCP block.
The Content Source is Parent Page, set to pull the Sidebar area from 2 pages from the top. The Content Transform is Selector, set to remove container and row classes that, when unnecessarily nested, could mess up the Bootstrap grid. The Content Display is Plain, which just outputs the transformed text.
In the advanced settings, sanitization is disabled as we trust the source page and don't want to strip out any formatting or functionality from the pulled sidebar.