silverstripe-iframe/templates/Layout/IFramePage.ss

12 lines
326 B
Scheme
Raw Normal View History

2009-02-27 03:41:21 +01:00
<div class="typography">
<h2>$Title</h2>
$Content
<% if DynamicHeight %>
<iframe src="$IFrameUrl" class="iframeautosize" style="width: 100%;">$AlternateContent</iframe>
<% else %>
<iframe src="$IFrameUrl" style="width: 100%; height: {$FixedHeight}px;">$AlternateContent</iframe>
<% end_if %>
$BottomContent
2009-02-27 03:41:21 +01:00
</div>