website/resources/views/misc/blog.blade.php

18 lines
696 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">
@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>