feat: projects page
This commit is contained in:
parent
bf5b014435
commit
4ffec4148a
3 changed files with 158 additions and 0 deletions
16
resources/views/pages/projects.blade.php
Normal file
16
resources/views/pages/projects.blade.php
Normal file
|
@ -0,0 +1,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
|
Loading…
Add table
Add a link
Reference in a new issue