mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-12 01:50:48 +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_javascript'] = 'http://static.example.org/script.js';
|
||||
// $config['url_banner'] = '/banner.php';
|
||||
// $config['url_favicon'] = '/favicon.gif';
|
||||
?>
|
@ -2,6 +2,7 @@
|
||||
<html>
|
||||
<head>
|
||||
<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>
|
||||
<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" />
|
||||
|
@ -2,6 +2,7 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" media="screen" href="{config[url_stylesheet]}"/>
|
||||
{config[url_favicon]?<link rel="shortcut icon" href="{config[url_favicon]}" />}
|
||||
<title>{title}</title>
|
||||
<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" />
|
||||
|
@ -2,6 +2,7 @@
|
||||
<html>
|
||||
<head>
|
||||
<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>
|
||||
<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" />
|
||||
|
Loading…
Reference in New Issue
Block a user