Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions fec/home/templates/home/document_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,14 @@ <h1 class="heading__left">{% formatted_title self %}</h1>
<div class="heading__right">
<span class="t-sans">{{ self.display_date }}</span>
</div>
{% endspaceless %}
</div>
{% endspaceless %}
</div>
</header>
<p class="t-sans t-normal">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The <p> and <i> will always be included, right? Even if there's no self.file_url, no self.extension, and/or no self.size?

{% if self.file_url %}<i class="icon icon--inline--right icon--inline--left i-document"></i><a href="{{ self.file_url }}">{{ self.title}}</a>{% endif %}
{% if self.extension %} | ({{ self.extension }}){% endif %}
{% if self.size %} | ({{ self.size }}){% endif %}
Comment on lines +30 to +31
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These could be included even if there's no self.file_url, right? Granted, it seems unlikely

</p>
<div class="main__content">
{% include 'partials/body-blocks.html' with blocks=self.body %}
</div>
Expand Down