1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/resources/views/emails/partials/account_logo.blade.php
2016-05-05 17:46:22 +03:00

12 lines
389 B
PHP

@if ($account->hasLogo())
@if ($account->website)
<a href="{{ $account->website }}" style="color: #19BB40; text-decoration: underline;">
@endif
<img src="{{ isset($message) ? $message->embed($account->getLogoURL()) : $account->getLogoURL() }}" style="max-height:50px; max-width:140px; margin-left: 33px;" />
@if ($account->website)
</a>
@endif
@endif