Skip to content

Fix FAQ side bar display #2037

Description

@bwbroersma

Since the adding of video presentations:

The section in the FAQ was renamed from Tests to Background, and the listing was changed to have multiple links per list item:

#, md-format
msgid "faqs content"
msgstr ""
"## Background\n"
"* About [website test](/test-site/), [email test](/test-mail/), and [connection test](/test-connection/)\n"
"* [Video recordings of presentations](/faqs/video/)\n"
" \n"

However this section is also used as a side bar:
<aside>
<section class="block news">
{% include "content.html" with name="faqs content" %}
</section>
</aside>

Which cannot handle this content because of the CSS display: block; on the li a:
.news li a {
display:inline-block;
color: #000000;
text-decoration: none;
vertical-align: top;
padding-top:.5em;
padding-bottom:.5em;
margin-bottom:0;
display: block;

The result is a broken side bar in https://internet.nl/test-mail/ (which is also used if the domain was not testable with the query https://internet.nl/test-site/?invalid ).

Another issue:

msgid "faqs video title"
msgstr "## Video recordings of presentations"

which results in:

<title>&lt;h2&gt;Video recordings of presentations&lt;/h2&gt;</title>

The ## -prefix should be removed from the title.

Metadata

Metadata

Assignees

Labels

bugUnexpected or unwanted behaviour of current implementationscontentChange (needed) to the content repository alongside with this issue/PRwebdesignIssues that relate to the front-end web design

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions