I want to make a sidebar for my webapplication. It contains the following content:
- A search bar
- a list of tags
- links to recent posts (with year and month)
I want to include this sidebar in every site/view. So my first guess is that it would belong to a layout. But it's also dynamic and as far as i know layouts are static.
How do I avoid redundancy in my views/layouts and still have the sidebar on every site?