website/resources/views/pages/games.blade.php

26 lines
979 B
PHP

@extends('layouts.app')
@section('title')
<title>Games - {{ env('APP_NAME') }}</title>
@endsection
@section('titlediscord')
<meta content="Games - {{ env('APP_NAME') }}" property="og:title" />
@endsection
@section('descdiscord')
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
@endsection
@section('alert')
<div id="alert">Note that this page does not support joining yet. If you would like to join your own game that you are currently hosting, <a onclick="openClientPopup('localhost','53640',null,'join')">click here</a>.</div>
@endsection
@section('content')
<h1>Games</h1>
<br>
<div class="content_special" style="flex-wrap: wrap; justify-content: space-around;">
<div>
<a href="{{ route('gamepage')}}"><img class="gamethumbnail_small"></a>
<a href="{{ route('gamepage')}}">Natural Disaster Survival</a>
<p>By <a href="{{ route('profile', 1) }}">ARCHBLOX</a></p>
</div>
</div>
@endsection