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,35 +1,36 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="{{App::getLocale()}}"> <html lang="{{App::getLocale()}}">
<head> <head>
<!-- Source: https://github.com/invoiceninja/invoiceninja -->
<!-- Version: {{ NINJA_VERSION }} -->
<meta charset="utf-8">
@if (Utils::isWhiteLabel()) @if (Utils::isWhiteLabel())
<title>{{ trans('texts.client_portal') }}</title> <title>{{ trans('texts.client_portal') }}</title>
<link href="{{ asset('ic_cloud_circle.png') }}" rel="shortcut icon" type="image/png">
@else @else
<title>{{ isset($title) ? ($title . ' | Invoice Ninja') : ('Invoice Ninja | ' . trans('texts.app_title')) }}</title> <title>{{ isset($title) ? ($title . ' | Invoice Ninja') : ('Invoice Ninja | ' . trans('texts.app_title')) }}</title>
<meta name="description" content="{{ isset($description) ? $description : trans('texts.app_description') }}"/> <meta name="description" content="{{ isset($description) ? $description : trans('texts.app_description') }}"/>
<link href="{{ asset('favicon-v2.png') }}" rel="shortcut icon" type="image/png"> <link href="{{ asset('favicon-v2.png') }}" rel="shortcut icon" type="image/png">
<meta property="og:site_name" content="Invoice Ninja"/>
<meta property="og:url" content="{{ SITE_URL }}"/>
<meta property="og:title" content="Invoice Ninja"/>
<meta property="og:image" content="{{ SITE_URL }}/images/round_logo.png"/>
<meta property="og:description" content="Simple, Intuitive Invoicing."/>
<!-- http://realfavicongenerator.net -->
<link rel="apple-touch-icon" sizes="180x180" href="{{ url('apple-touch-icon.png') }}">
<link rel="icon" type="image/png" href="{{ url('favicon-32x32.png') }}" sizes="32x32">
<link rel="icon" type="image/png" href="{{ url('favicon-16x16.png') }}" sizes="16x16">
<link rel="manifest" href="{{ url('manifest.json') }}">
<link rel="mask-icon" href="{{ url('safari-pinned-tab.svg') }}" color="#3bc65c">
<link rel="shortcut icon" href="{{ url('favicon.ico') }}">
<meta name="apple-mobile-web-app-title" content="Invoice Ninja">
<meta name="application-name" content="Invoice Ninja">
<meta name="theme-color" content="#ffffff">
@endif @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"/>
<meta property="og:image" content="{{ SITE_URL }}/images/round_logo.png"/>
<meta property="og:description" content="Simple, Intuitive Invoicing."/>
<!-- http://realfavicongenerator.net -->
<link rel="apple-touch-icon" sizes="180x180" href="{{ url('apple-touch-icon.png') }}">
<link rel="icon" type="image/png" href="{{ url('favicon-32x32.png') }}" sizes="32x32">
<link rel="icon" type="image/png" href="{{ url('favicon-16x16.png') }}" sizes="16x16">
<link rel="manifest" href="{{ url('manifest.json') }}">
<link rel="mask-icon" href="{{ url('safari-pinned-tab.svg') }}" color="#3bc65c">
<link rel="shortcut icon" href="{{ url('favicon.ico') }}">
<meta name="apple-mobile-web-app-title" content="Invoice Ninja">
<meta name="application-name" content="Invoice Ninja">
<meta name="theme-color" content="#ffffff">
<!-- http://stackoverflow.com/questions/19012698/browser-cache-issues-in-laravel-4-application --> <!-- http://stackoverflow.com/questions/19012698/browser-cache-issues-in-laravel-4-application -->
<meta http-equiv="cache-control" content="max-age=0"/> <meta http-equiv="cache-control" content="max-age=0"/>
<meta http-equiv="cache-control" content="no-cache"/> <meta http-equiv="cache-control" content="no-cache"/>