mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-13 18:40:49 +01:00
Option to add custom favicon
This commit is contained in:
parent
8ee00d344a
commit
cbd9fa8f17
@ -449,4 +449,5 @@
|
|||||||
// $config['url_stylesheet'] = 'http://static.example.org/style.css';
|
// $config['url_stylesheet'] = 'http://static.example.org/style.css';
|
||||||
// $config['url_javascript'] = 'http://static.example.org/script.js';
|
// $config['url_javascript'] = 'http://static.example.org/script.js';
|
||||||
// $config['url_banner'] = '/banner.php';
|
// $config['url_banner'] = '/banner.php';
|
||||||
|
// $config['url_favicon'] = '/favicon.gif';
|
||||||
?>
|
?>
|
@ -2,6 +2,7 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<link rel="stylesheet" media="screen" href="{config[url_stylesheet]}"/>
|
<link rel="stylesheet" media="screen" href="{config[url_stylesheet]}"/>
|
||||||
|
{config[url_favicon]?<link rel="shortcut icon" href="{config[url_favicon]}" />}
|
||||||
<title>{board[url]} - {board[name]}</title>
|
<title>{board[url]} - {board[name]}</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<link rel="stylesheet" media="screen" href="{config[url_stylesheet]}"/>
|
<link rel="stylesheet" media="screen" href="{config[url_stylesheet]}"/>
|
||||||
|
{config[url_favicon]?<link rel="shortcut icon" href="{config[url_favicon]}" />}
|
||||||
<title>{title}</title>
|
<title>{title}</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<link rel="stylesheet" media="screen" href="{config[url_stylesheet]}"/>
|
<link rel="stylesheet" media="screen" href="{config[url_stylesheet]}"/>
|
||||||
|
{config[url_favicon]?<link rel="shortcut icon" href="{config[url_favicon]}" />}
|
||||||
<title>{board[url]} - {board[name]}</title>
|
<title>{board[url]} - {board[name]}</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
|
||||||
|
Loading…
Reference in New Issue
Block a user