refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
This commit is contained in:
29
resources/views/changelog/index.blade.php
Normal file
29
resources/views/changelog/index.blade.php
Normal file
@@ -0,0 +1,29 @@
|
||||
@extends('layouts.skeleton')
|
||||
|
||||
@section('content')
|
||||
<div class="changelog">
|
||||
|
||||
<section class="ph3 ph0-ns pv4 cf w-100 bg-gray-monica">
|
||||
<div class="mt4 mw7 center mb3">
|
||||
<h3>{{ trans('changelog.title') }}</h3>
|
||||
|
||||
@if (\App::getLocale() != 'en')
|
||||
<p>{{ trans('changelog.note') }}</p>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
@foreach ($changelogs as $changelog)
|
||||
<div class="mw7 center br3 ba b--gray-monica bg-white mb4 pa4">
|
||||
<div class="f7 mb2">
|
||||
{{ $changelog['date'] }}
|
||||
</div>
|
||||
<div>
|
||||
<h2>{{ $changelog['title'] }}</h2>
|
||||
{!! (new \Parsedown())->text($changelog['description']) !!}
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</section>
|
||||
|
||||
</div>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user