Skip to content

Instantly share code, notes, and snippets.

@phuclh
Created January 19, 2015 11:02
Show Gist options
  • Save phuclh/a0f89c4f7c009d6bec60 to your computer and use it in GitHub Desktop.
Save phuclh/a0f89c4f7c009d6bec60 to your computer and use it in GitHub Desktop.
@extends('frontend.layouts.default')
@section('title', 'Nhóm dịch: ' . $team->name . ' | ')
@section('content')
<div class="row">
<div class="col-md-12">
<div class="m-box clearfix">
<div style="background-image: url('{{ $team->present()->getCover }}')" class="cover"></div>
<div class="overlay">
<div class="m-box-thumbnail pull-left">
{{ HTML::image($team->present()->getLogo, $team->name, ['class' => 'img-responsive']) }}
</div>
<div class="m-box-info">
<h3 class="m-name">{{ $team->name }}</h3>
<p class="m-line"><strong>Trưởng nhóm:</strong> {{ $team->present()->getFounder->username }}</p>
@if (!empty($team->website))
<p class="m-line"><strong>Trụ sở nhóm dịch:</strong> <a href="{{ $team->website }}" title="{{ $team->name }}">{{ $team->website }}</a></p>
@endif
@if (!empty($team->facebook))
<p class="m-line"><strong>Facebook:</strong> <a href="{{ $team->facebook }}" title="">{{ $team->facebook }}</a></p>
@endif
<p class="m-line"><strong>Sơ lược:</strong> {{ $team->description }}</p>
</div>
</div>
<div class="m-box-vote">
<div class="rating">
<div class="row">
<div class="col-md-6"><i class="fa fa-trophy"></i> <strong>Tổng điểm:</strong> {{ number_format($team->present()->countPoints) }} pts</div>
@if (!empty($team->facebook))
<div class="col-md-6 text-right">
<iframe src="//www.facebook.com/plugins/like.php?href={{ $team->facebook }}&amp;width=370&amp;layout=standard&amp;action=like&amp;show_faces=true&amp;share=true&amp;height=20&amp;appId=1489677027945130" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:370px; height:20px;" allowTransparency="true"></iframe>
</div>
@endif
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-9">
<div class="n-box">
<div class="n-box-title">
<h4>Danh sách truyện của nhóm: <strong>{{ $team->name }}</strong></h4>
</div>
<div class="n-box-content">
<ul class="manga-list team-list-manga">
@include('frontend.mangas.partials.list-mangas-of-team')
</ul>
<div class="text-right">
{{ $mangas->links() }}
</div>
</div>
</div>
</div>
@include('frontend.layouts.partials.page-sidebar')
</div>
@stop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment