26 lines
664 B
PHP
26 lines
664 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')
|
|
<style>
|
|
body {
|
|
height: 100%;
|
|
margin: 0;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
.content {
|
|
display: none;
|
|
}
|
|
</style>
|
|
@endsection
|
|
@section('custom_content')
|
|
<iframe src="https://archblox.blogspot.com" title="ARCHBLOX Blog" width="100%" height="100%" style="border:none;" seamless sandbox></iframe>
|
|
@endsection |