Last active
October 9, 2017 18:07
-
-
Save rqreyes/4b91b4e8b906b8095d3f2f811bc88a99 to your computer and use it in GitHub Desktop.
if no title and description exist, hide slide content background
This file contains hidden or 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
@if (!string.IsNullOrWhiteSpace(title)) { | |
<div class="slide_content"> | |
<div class="container"> | |
<h2 class="slide_title">@title</h2> | |
@if (!string.IsNullOrWhiteSpace(desc)) { | |
<p class="slide_description"> | |
@desc | |
@if (href != "javascript:void(0);") { | |
<a href="@href" class="slide_link">Learn More</a> | |
} | |
</p> | |
} | |
</div> | |
</div> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment