blob: 8280fef75dafb9dde7b87d1cd09e3f66c759ac5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php $categories = app('config')->get('projects'); ?>
@extends('layouts.default')
@section('title', 'test')
@section('description', 'This is the personal homepage of floppydisk.')
@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/>
<b>Languages:</b> {{ implode(", ", $project['languages']) }}
</div>
<br/>
@endforeach
@endforeach
@stop
|