@extends('layouts.master') @section('content')

Settings: Administation

Edit Template: {{$templateName}}

Top, Left, and Footer is HTML code used in the body of every page, and CSS is the CSS code included in every page.

Some fields have special keywords which are used to position some kind of content. For example, the Left area has links to other pages in the template, and the 'body: search results' area can include a keyword which gets replaced with a table of search results or job openings. A button is included on these areas to insert the associated keywords.

@csrf @foreach($template as $name=>$data)

{{$name}}

@if($name == 'Header') @endif @if($name != 'CSS') @endif @if($name == 'Content - Main') @endif @if($name == 'Content - Search Results') @endif @if($name == 'Content - Job Details') @endif @if($name == 'Content - Apply for Position') @endif @if($name == 'Content - Thanks for your Submission') @endif @if($name == 'CSS') @endif
@endforeach
@endsection