-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
css, twig: update conditional code in lead.twig, update variable name…
…s for lead component to not be davis site specific, update classname for pulled up lead component
- Loading branch information
1 parent
0c80cb4
commit 9c695be
Showing
3 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{% if theme == 'davis' %} | ||
<div class="paragraph--full paragraph--davis-lead"> | ||
{% if pulled_up %} | ||
<div class="paragraph--full paragraph--lead-pulled-up"> | ||
<div class="container px-0"> | ||
{% endif %} | ||
<p class="{{theme == 'davis' ? "davis-lead" : "lead paragraph--lead"}}">Lorem ipsum dolor sit amet consectetur adipisicing elit. Iste iusto blanditiis dolorem illum accusantium, praesentium labore cumque fugit eos, quasi corporis voluptas aut! Doloremque similique dolorem enim, quos ipsam soluta!</p> | ||
{% if theme == 'davis' %} | ||
<p class="{{pulled_up and theme == "uwc" ? "davis-lead" : "lead paragraph--lead"}}">Lorem ipsum dolor sit amet consectetur adipisicing elit. Iste iusto blanditiis dolorem illum accusantium, praesentium labore cumque fugit eos, quasi corporis voluptas aut! Doloremque similique dolorem enim, quos ipsam soluta!</p> | ||
{% if pulled_up %} | ||
</div> | ||
</div> | ||
{% endif %} |