37 lines
1.3 KiB
PHP
37 lines
1.3 KiB
PHP
@extends('layouts.ide')
|
|
@section('title')
|
|
<title>Start Page</title>
|
|
@endsection
|
|
@section('titlediscord')
|
|
<meta content="Start Page - {{env('APP_NAME')}}" property="og:title" />
|
|
@endsection
|
|
@section('descdiscord')
|
|
<meta content="ARCHBLOX" property="og:description" />
|
|
@endsection
|
|
@section('extras')
|
|
<script src="{{ asset('js/test.js') }}">
|
|
@endsection
|
|
@section('content')
|
|
@guest
|
|
<p>Please <a href="{{ route('login') }}">Log In</a> to continue.</p>
|
|
@else
|
|
<div class="container">
|
|
<div class="main">
|
|
<div id="TemplatesView" class="welcome-content-area">
|
|
|
|
<h2 id="StudioGameTemplates">GAME TEMPLATES</h2>
|
|
<div class="templates" js-data-templatetype="Basic">
|
|
<div class="template" placeid="200">
|
|
<a href="" class="game-image"><img class=""
|
|
src="https://web.archive.org/web/20130702194455im_/http://t2ak.roblox.com/362ae9c43957047a0287f9cd2c98646c" /></a>
|
|
</div>
|
|
<div class="template" placeid="201">
|
|
<a href="" class="game-image"><img class=""
|
|
src="https://web.archive.org/web/20130702194455im_/http://t7ak.roblox.com/ab99a6e34406eb5e7aebd349c90ce35b" /></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endguest
|
|
@endsection |