**“Back to Articles”** #10
akvariefisk
started this conversation in
Ideas
Replies: 3 comments 2 replies
|
Adding: even for Projects same button as well. |
0 replies
|
Hi Erik, That's actually a theme feature, not a core CMS feature ;) Each theme has its own design approach and navigation patterns. That's intentional, I want variety in the theme library rather than having them all look and behave the same. It's already implemented in Mono (default) and Vanta. If you want to add it to any other theme, it's a one-liner in <a href="<?php echo cleanUrl('articles'); ?>" class="back-link"><?php echo __t('articles'); ?></a>Then style Hope that helps :) |
2 replies
|
Hi @akvariefisk, Now the CMS allows renaming the content types, so to reflect the new content-type names in your backlinks, you can use this instead: <a href="<?php echo cleanUrl('article'); ?>" class="back-link"><?php echo sl_type_label('article', true); ?></a> |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Mr. Dev ;)
I had an idea while reading an article. I noticed that there’s no “Back to Articles” button above the article that takes you back to the full list of articles.
At the moment, when reading an article, you have to scroll back to the top navigation to return to the articles overview. I think it would be much more user-friendly if every article had a clear “Back to Articles” button at the top.
For example, if someone is reading Lorem Ipsum 1 and wants to continue with Lorem Ipsum 2, they should be able to easily return to the article overview and choose the next one.
Just a small UX improvement, but I think it would make navigating between articles much smoother.
Cheers,
Erik
All reactions