2024-04-22 23:52:04 +05:00
|
|
|
@section('meta_title', $websiteTranslations->translate('site.Project') . ': ' . $content->title)
|
2024-04-18 19:41:31 +05:00
|
|
|
@section('h1', $content->title)
|
|
|
|
|
2024-04-22 23:52:04 +05:00
|
|
|
<x-site.layout :project="$project" :websiteTranslations="$websiteTranslations">
|
2024-05-17 21:06:12 +05:00
|
|
|
<div class="line-numbers">{!! $content->description !!}</div>
|
2024-04-24 21:00:27 +05:00
|
|
|
|
|
|
|
<hr>
|
|
|
|
@foreach($links as $link)
|
|
|
|
<p><a href="{{ $link->link }}" rel=“nofollow” target="_blank">{{ $link->title }}</a></p>
|
|
|
|
@endforeach
|
2024-05-17 21:06:12 +05:00
|
|
|
|
|
|
|
@push('scripts')
|
|
|
|
@include('_prism')
|
2024-07-26 22:04:39 +05:00
|
|
|
@include('_fancybox')
|
2024-05-17 21:06:12 +05:00
|
|
|
@endpush
|
2024-04-18 19:41:31 +05:00
|
|
|
</x-site.layout>
|