Skip to content

Instantly share code, notes, and snippets.

@rqreyes
Last active October 9, 2017 18:07
Show Gist options
  • Save rqreyes/4b91b4e8b906b8095d3f2f811bc88a99 to your computer and use it in GitHub Desktop.
Save rqreyes/4b91b4e8b906b8095d3f2f811bc88a99 to your computer and use it in GitHub Desktop.
if no title and description exist, hide slide content background
@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