infojune/resources/views/softbox.blade.php

32 lines
1.3 KiB
PHP
Raw Permalink Normal View History

2020-10-10 12:12:44 +02:00
@extends('master')
@section('body')
2020-11-23 10:35:37 +01:00
<div class="row center">
<div class="col l4 m4 s12 ">
<img width="200px" src="/storage/{{ $content->img }}" alt="{{ $content->name }} Logo">
<h3>{{ $content->name }}</h3>
2020-10-27 18:44:10 +01:00
2020-11-23 10:35:37 +01:00
<p class="description">{{ $content->description }}</p>
<p class="licence">{{ $content->licence }}</p>
</div>
</div>
<div class="row center">
<div class="col s12 m2 l2">
<p>Créateur(s) / Mainteneur Principal : </p>
@foreach (json_decode($content->creator, true) as $creator)
<a href="https://demo.cesium.app/#/app/wot/{{ $creator['pubkey'] }}/"
class="waves-effect waves-light btn yellow darken-4"
title="Donner à {{ $creator['creator'] }} ">{{ $creator['creator'] }}</a>
2020-10-25 18:37:52 +01:00
@endforeach
2020-11-23 10:35:37 +01:00
</div>
</div>
<div class="row center">
<div class="col l4 m4 s12 sb-btns">
@foreach (json_decode($content->href, true) as $link)
<a class="sb buttons waves-effect waves-light btn-large" target="_blank" href="{{ $link }}"></a>
2020-10-15 12:23:13 +02:00
2020-11-23 10:35:37 +01:00
@endforeach
</div>
</div>
2020-10-10 12:12:44 +02:00
@endsection