Update blog.blade.php

This commit is contained in:
Thomas G 2022-07-23 04:14:09 +10:00
parent 9b3d0dbb0c
commit 174e91da85
1 changed files with 24 additions and 17 deletions

View File

@ -1,18 +1,25 @@
@extends('layouts.app')
@section('title')
<title>Blog - {{ env('APP_NAME') }}</title>
@endsection
@section('titlediscord')
<meta content="Blog - {{ env('APP_NAME') }}" property="og:title" />
@endsection
@section('descdiscord')
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
@endsection
@section('extras')
<base target="_parent">
@endsection
<body style="height: 100%; margin: 0; width: 100%; overflow: hidden;">
@section('custom_content')
<iframe src="https://archblox.blogspot.com" title="ARCHBLOX Blog" width="100%" height="100%" style="border:none;"></iframe>
@endsection
</body>
@section('title')
<title>Blog - {{ env('APP_NAME') }}</title>
@endsection
@section('titlediscord')
<meta content="Blog - {{ env('APP_NAME') }}" property="og:title" />
@endsection
@section('descdiscord')
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
@endsection
@section('extras')
<base target="_parent">
<style>
body {
height: 100%;
margin: 0;
width: 100%;
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