my-projects-website/app/application/resources/views/site/projects/about.blade.php

12 lines
418 B
PHP
Raw Normal View History

@section('meta_title', $websiteTranslations->translate('site.Project') . ': ' . $content->title)
@section('h1', $content->title)
<x-site.layout :project="$project" :websiteTranslations="$websiteTranslations">
{!! $content->description !!}
<hr>
@foreach($links as $link)
<p><a href="{{ $link->link }}" rel=“nofollow” target="_blank">{{ $link->title }}</a></p>
@endforeach
</x-site.layout>