Update blog.blade.php
This commit is contained in:
parent
9b3d0dbb0c
commit
174e91da85
|
|
@ -1,18 +1,25 @@
|
||||||
@extends('layouts.app')
|
@extends('layouts.app')
|
||||||
@section('title')
|
@section('title')
|
||||||
<title>Blog - {{ env('APP_NAME') }}</title>
|
<title>Blog - {{ env('APP_NAME') }}</title>
|
||||||
@endsection
|
@endsection
|
||||||
@section('titlediscord')
|
@section('titlediscord')
|
||||||
<meta content="Blog - {{ env('APP_NAME') }}" property="og:title" />
|
<meta content="Blog - {{ env('APP_NAME') }}" property="og:title" />
|
||||||
@endsection
|
@endsection
|
||||||
@section('descdiscord')
|
@section('descdiscord')
|
||||||
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
||||||
@endsection
|
@endsection
|
||||||
@section('extras')
|
@section('extras')
|
||||||
<base target="_parent">
|
<base target="_parent">
|
||||||
@endsection
|
<style>
|
||||||
<body style="height: 100%; margin: 0; width: 100%; overflow: hidden;">
|
body {
|
||||||
@section('custom_content')
|
height: 100%;
|
||||||
<iframe src="https://archblox.blogspot.com" title="ARCHBLOX Blog" width="100%" height="100%" style="border:none;"></iframe>
|
margin: 0;
|
||||||
@endsection
|
width: 100%;
|
||||||
</body>
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
@endsection
|
||||||
|
@section('custom_content')
|
||||||
|
<iframe src="https://archblox.blogspot.com" title="ARCHBLOX Blog" width="100%" height="100%"
|
||||||
|
style="border:none;"></iframe>
|
||||||
|
@endsection
|
||||||
Loading…
Reference in New Issue