Update
This commit is contained in:
parent
aeb9501237
commit
e5c778e7ad
30 changed files with 311 additions and 183 deletions
|
@ -1,16 +1,16 @@
|
|||
<?php $categories = app('config')->get('projects'); ?>
|
||||
@extends('layouts.default')
|
||||
@section('title', 'projects')
|
||||
@section('title', 'Projects')
|
||||
@section('description', 'My projects')
|
||||
@section('content')
|
||||
@foreach ($categories as $category)
|
||||
<h1>{{ $category['name']}}</h1>
|
||||
@foreach ($category['projects'] as $project)
|
||||
<div>
|
||||
<a href="{{ $project['url'] }}">{{ $project['name'] }}</a> - {{ $project['description'] }}<br/>
|
||||
<a href="{{ $project['url'] }}">{{ $project['name'] }}</a> - {{ $project['description'] }}<br>
|
||||
<b>Languages:</b> {{ implode(", ", $project['languages']) }}
|
||||
</div>
|
||||
<br/>
|
||||
<br>
|
||||
@endforeach
|
||||
@endforeach
|
||||
@stop
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue