style: fix html alignment, etc.

This commit is contained in:
Frankie B 2023-07-03 19:07:31 +01:00
commit b5293a41a3
No known key found for this signature in database
7 changed files with 329 additions and 324 deletions

View file

@ -3,10 +3,10 @@
@section('title', 'projects')
@section('description', 'My projects')
@section('content')
@foreach ($categories as $category)
@foreach ($categories as $category)
<h1>{{ $category['name']}}</h1>
@foreach ($category['projects'] as $project)
<div>
<div>
<a href="{{ $project['url'] }}">{{ $project['name'] }}</a> - {{ $project['description'] }}<br/>
<b>Languages:</b> {{ implode(", ", $project['languages']) }}
</div>