1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00

Change favicon for white labeled installs

This commit is contained in:
Hillel Coren 2017-02-20 11:21:52 +02:00
parent 7e3950e47c
commit 96fb72c339
2 changed files with 22 additions and 21 deletions

BIN
public/ic_cloud_circle.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 287 B

View File

@ -1,18 +1,18 @@
<!DOCTYPE html>
<html lang="{{App::getLocale()}}">
<head>
<!-- Source: https://github.com/invoiceninja/invoiceninja -->
<!-- Version: {{ NINJA_VERSION }} -->
<meta charset="utf-8">
@if (Utils::isWhiteLabel())
<title>{{ trans('texts.client_portal') }}</title>
<link href="{{ asset('ic_cloud_circle.png') }}" rel="shortcut icon" type="image/png">
@else
<title>{{ isset($title) ? ($title . ' | Invoice Ninja') : ('Invoice Ninja | ' . trans('texts.app_title')) }}</title>
<meta name="description" content="{{ isset($description) ? $description : trans('texts.app_description') }}"/>
<link href="{{ asset('favicon-v2.png') }}" rel="shortcut icon" type="image/png">
@endif
<!-- Source: https://github.com/invoiceninja/invoiceninja -->
<!-- Version: {{ NINJA_VERSION }} -->
<meta charset="utf-8">
<meta property="og:site_name" content="Invoice Ninja"/>
<meta property="og:url" content="{{ SITE_URL }}"/>
<meta property="og:title" content="Invoice Ninja"/>
@ -29,6 +29,7 @@
<meta name="apple-mobile-web-app-title" content="Invoice Ninja">
<meta name="application-name" content="Invoice Ninja">
<meta name="theme-color" content="#ffffff">
@endif
<!-- http://stackoverflow.com/questions/19012698/browser-cache-issues-in-laravel-4-application -->
<meta http-equiv="cache-control" content="max-age=0"/>