mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
15 lines
326 B
Handlebars
15 lines
326 B
Handlebars
|
<iframe id="site-frame" class="site-frame" src="{{this.config.blogUrl}}/" frameborder="0" allowtransparency="true"></iframe>
|
||
|
|
||
|
<style>
|
||
|
.site-frame {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
border: none;
|
||
|
transform: translate3d(0, 0, 0);
|
||
|
}
|
||
|
</style>
|