25 lines
643 B
PHP
25 lines
643 B
PHP
@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">
|
|
<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 |