Allow to define own HTML <head> attributes

Create a `index.hbs` template file to render additional HTML <head> attributes
This commit is contained in:
Gilles Rasigade 2020-05-01 07:47:50 +02:00 committed by Eric Huss
parent 8ee950e3de
commit 61c8413138
4 changed files with 273 additions and 237 deletions

View File

@ -327,6 +327,9 @@ impl Renderer for HtmlHandlebars {
debug!("Register the index handlebars template"); debug!("Register the index handlebars template");
handlebars.register_template_string("index", String::from_utf8(theme.index.clone())?)?; handlebars.register_template_string("index", String::from_utf8(theme.index.clone())?)?;
debug!("Register the head handlebars template");
handlebars.register_partial("head", String::from_utf8(theme.head.clone())?)?;
debug!("Register the header handlebars template"); debug!("Register the header handlebars template");
handlebars.register_partial("header", String::from_utf8(theme.header.clone())?)?; handlebars.register_partial("header", String::from_utf8(theme.header.clone())?)?;

1
src/theme/head.hbs Normal file
View File

@ -0,0 +1 @@
{{!-- Put your head HTML text here --}}

View File

@ -1,289 +1,315 @@
<!DOCTYPE HTML> <!DOCTYPE HTML>
<html lang="{{ language }}" class="sidebar-visible no-js {{ default_theme }}"> <html lang="{{ language }}" class="sidebar-visible no-js {{ default_theme }}">
<head>
<!-- Book generated using mdBook -->
<meta charset="UTF-8">
<title>{{ title }}</title>
{{#if is_print }}
<meta name="robots" content="noindex" />
{{/if}}
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <head>
<meta name="description" content="{{ description }}"> <!-- Book generated using mdBook -->
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta charset="UTF-8">
<meta name="theme-color" content="#ffffff" /> <title>{{ title }}</title>
{{#if is_print }}
<meta name="robots" content="noindex" />
{{/if}}
<link rel="shortcut icon" href="{{ path_to_root }}{{ favicon }}"> <!-- Custom HTML head -->
<link rel="stylesheet" href="{{ path_to_root }}css/variables.css"> {{> head}}
<link rel="stylesheet" href="{{ path_to_root }}css/general.css">
<link rel="stylesheet" href="{{ path_to_root }}css/chrome.css">
<link rel="stylesheet" href="{{ path_to_root }}css/print.css" media="print">
<!-- Fonts --> <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<link rel="stylesheet" href="{{ path_to_root }}FontAwesome/css/font-awesome.css"> <meta name="description" content="{{ description }}">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <meta name="theme-color" content="#ffffff" />
<!-- Highlight.js Stylesheets --> <link rel="shortcut icon" href="{{ path_to_root }}{{ favicon }}">
<link rel="stylesheet" href="{{ path_to_root }}highlight.css"> <link rel="stylesheet" href="{{ path_to_root }}css/variables.css">
<link rel="stylesheet" href="{{ path_to_root }}tomorrow-night.css"> <link rel="stylesheet" href="{{ path_to_root }}css/general.css">
<link rel="stylesheet" href="{{ path_to_root }}ayu-highlight.css"> <link rel="stylesheet" href="{{ path_to_root }}css/chrome.css">
<link rel="stylesheet" href="{{ path_to_root }}css/print.css" media="print">
<!-- Custom theme stylesheets --> <!-- Fonts -->
{{#each additional_css}} <link rel="stylesheet" href="{{ path_to_root }}FontAwesome/css/font-awesome.css">
<link rel="stylesheet" href="{{ ../path_to_root }}{{ this }}"> <link
{{/each}} href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800"
rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css">
{{#if mathjax_support}} <!-- Highlight.js Stylesheets -->
<!-- MathJax --> <link rel="stylesheet" href="{{ path_to_root }}highlight.css">
<script async type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <link rel="stylesheet" href="{{ path_to_root }}tomorrow-night.css">
{{/if}} <link rel="stylesheet" href="{{ path_to_root }}ayu-highlight.css">
</head>
<body>
<!-- Provide site root to javascript -->
<script type="text/javascript">
var path_to_root = "{{ path_to_root }}";
var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "{{ preferred_dark_theme }}" : "{{ default_theme }}";
</script>
<!-- Work around some values being stored in localStorage wrapped in quotes --> <!-- Custom theme stylesheets -->
<script type="text/javascript"> {{#each additional_css}}
try { <link rel="stylesheet" href="{{ ../path_to_root }}{{ this }}">
var theme = localStorage.getItem('mdbook-theme'); {{/each}}
var sidebar = localStorage.getItem('mdbook-sidebar');
if (theme.startsWith('"') && theme.endsWith('"')) { {{#if mathjax_support}}
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1)); <!-- MathJax -->
} <script async type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
{{/if}}
</head>
if (sidebar.startsWith('"') && sidebar.endsWith('"')) { <body>
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1)); <!-- Provide site root to javascript -->
} <script type="text/javascript">
} catch (e) { } var path_to_root = "{{ path_to_root }}";
</script> var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "{{ preferred_dark_theme }}" : "{{ default_theme }}";
</script>
<!-- Set the theme before any content is loaded, prevents flash --> <!-- Work around some values being stored in localStorage wrapped in quotes -->
<script type="text/javascript"> <script type="text/javascript">
var theme; try {
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { } var theme = localStorage.getItem('mdbook-theme');
if (theme === null || theme === undefined) { theme = default_theme; } var sidebar = localStorage.getItem('mdbook-sidebar');
var html = document.querySelector('html');
html.classList.remove('no-js')
html.classList.remove('{{ default_theme }}')
html.classList.add(theme);
html.classList.add('js');
</script>
<!-- Hide / unhide sidebar before it is displayed --> if (theme.startsWith('"') && theme.endsWith('"')) {
<script type="text/javascript"> localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
var html = document.querySelector('html');
var sidebar = 'hidden';
if (document.body.clientWidth >= 1080) {
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
sidebar = sidebar || 'visible';
} }
html.classList.remove('sidebar-visible');
html.classList.add("sidebar-" + sidebar);
</script>
<nav id="sidebar" class="sidebar" aria-label="Table of contents"> if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
<div class="sidebar-scrollbox"> localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
{{#toc}}{{/toc}} }
</div> } catch (e) { }
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </script>
</nav>
<div id="page-wrapper" class="page-wrapper"> <!-- Set the theme before any content is loaded, prevents flash -->
<script type="text/javascript">
var theme;
try { theme = localStorage.getItem('mdbook-theme'); } catch (e) { }
if (theme === null || theme === undefined) { theme = default_theme; }
var html = document.querySelector('html');
html.classList.remove('no-js')
html.classList.remove('{{ default_theme }}')
html.classList.add(theme);
html.classList.add('js');
</script>
<div class="page"> <!-- Hide / unhide sidebar before it is displayed -->
{{> header}} <script type="text/javascript">
<div id="menu-bar-hover-placeholder"></div> var html = document.querySelector('html');
<div id="menu-bar" class="menu-bar sticky bordered"> var sidebar = 'hidden';
<div class="left-buttons"> if (document.body.clientWidth >= 1080) {
<button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar"> try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch (e) { }
<i class="fa fa-bars"></i> sidebar = sidebar || 'visible';
</button> }
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list"> html.classList.remove('sidebar-visible');
<i class="fa fa-paint-brush"></i> html.classList.add("sidebar-" + sidebar);
</button> </script>
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
<li role="none"><button role="menuitem" class="theme" id="light">{{ theme_option "Light" }}</button></li>
<li role="none"><button role="menuitem" class="theme" id="rust">{{ theme_option "Rust" }}</button></li>
<li role="none"><button role="menuitem" class="theme" id="coal">{{ theme_option "Coal" }}</button></li>
<li role="none"><button role="menuitem" class="theme" id="navy">{{ theme_option "Navy" }}</button></li>
<li role="none"><button role="menuitem" class="theme" id="ayu">{{ theme_option "Ayu" }}</button></li>
</ul>
{{#if search_enabled}}
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar">
<i class="fa fa-search"></i>
</button>
{{/if}}
</div>
<h1 class="menu-title">{{ book_title }}</h1> <nav id="sidebar" class="sidebar" aria-label="Table of contents">
<div class="sidebar-scrollbox">
{{#toc}}{{/toc}}
</div>
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
</nav>
<div class="right-buttons"> <div id="page-wrapper" class="page-wrapper">
<a href="{{ path_to_root }}print.html" title="Print this book" aria-label="Print this book">
<i id="print-button" class="fa fa-print"></i> <div class="page">
</a> {{> header}}
{{#if git_repository_url}} <div id="menu-bar-hover-placeholder"></div>
<a href="{{git_repository_url}}" title="Git repository" aria-label="Git repository"> <div id="menu-bar" class="menu-bar sticky bordered">
<i id="git-repository-button" class="fa {{git_repository_icon}}"></i> <div class="left-buttons">
</a> <button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents"
{{/if}} aria-label="Toggle Table of Contents" aria-controls="sidebar">
</div> <i class="fa fa-bars"></i>
</button>
<button id="theme-toggle" class="icon-button" type="button" title="Change theme"
aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
<i class="fa fa-paint-brush"></i>
</button>
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
<li role="none"><button role="menuitem" class="theme"
id="light">{{ theme_option "Light" }}</button></li>
<li role="none"><button role="menuitem" class="theme"
id="rust">{{ theme_option "Rust" }}</button></li>
<li role="none"><button role="menuitem" class="theme"
id="coal">{{ theme_option "Coal" }}</button></li>
<li role="none"><button role="menuitem" class="theme"
id="navy">{{ theme_option "Navy" }}</button></li>
<li role="none"><button role="menuitem" class="theme" id="ayu">{{ theme_option "Ayu" }}</button>
</li>
</ul>
{{#if search_enabled}}
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)"
aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S"
aria-controls="searchbar">
<i class="fa fa-search"></i>
</button>
{{/if}}
</div> </div>
{{#if search_enabled}} <h1 class="menu-title">{{ book_title }}</h1>
<div id="search-wrapper" class="hidden">
<form id="searchbar-outer" class="searchbar-outer">
<input type="search" name="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
</form>
<div id="searchresults-outer" class="searchresults-outer hidden">
<div id="searchresults-header" class="searchresults-header"></div>
<ul id="searchresults">
</ul>
</div>
</div>
{{/if}}
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM --> <div class="right-buttons">
<script type="text/javascript"> <a href="{{ path_to_root }}print.html" title="Print this book" aria-label="Print this book">
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible'); <i id="print-button" class="fa fa-print"></i>
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible'); </a>
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) { {{#if git_repository_url}}
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1); <a href="{{git_repository_url}}" title="Git repository" aria-label="Git repository">
}); <i id="git-repository-button" class="fa {{git_repository_icon}}"></i>
</script> </a>
{{/if}}
<div id="content" class="content">
<main>
{{{ content }}}
</main>
<nav class="nav-wrapper" aria-label="Page navigation">
<!-- Mobile navigation buttons -->
{{#previous}}
<a rel="prev" href="{{ path_to_root }}{{link}}" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
<i class="fa fa-angle-left"></i>
</a>
{{/previous}}
{{#next}}
<a rel="next" href="{{ path_to_root }}{{link}}" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
<i class="fa fa-angle-right"></i>
</a>
{{/next}}
<div style="clear: both"></div>
</nav>
</div> </div>
</div> </div>
<nav class="nav-wide-wrapper" aria-label="Page navigation"> {{#if search_enabled}}
{{#previous}} <div id="search-wrapper" class="hidden">
<a rel="prev" href="{{ path_to_root }}{{link}}" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <form id="searchbar-outer" class="searchbar-outer">
<input type="search" name="search" id="searchbar" name="searchbar"
placeholder="Search this book ..." aria-controls="searchresults-outer"
aria-describedby="searchresults-header">
</form>
<div id="searchresults-outer" class="searchresults-outer hidden">
<div id="searchresults-header" class="searchresults-header"></div>
<ul id="searchresults">
</ul>
</div>
</div>
{{/if}}
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
<script type="text/javascript">
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
Array.from(document.querySelectorAll('#sidebar a')).forEach(function (link) {
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
});
</script>
<div id="content" class="content">
<main>
{{{ content }}}
</main>
<nav class="nav-wrapper" aria-label="Page navigation">
<!-- Mobile navigation buttons -->
{{#previous}}
<a rel="prev" href="{{ path_to_root }}{{link}}" class="mobile-nav-chapters previous"
title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
<i class="fa fa-angle-left"></i> <i class="fa fa-angle-left"></i>
</a> </a>
{{/previous}} {{/previous}}
{{#next}} {{#next}}
<a rel="next" href="{{ path_to_root }}{{link}}" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <a rel="next" href="{{ path_to_root }}{{link}}" class="mobile-nav-chapters next"
title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
<i class="fa fa-angle-right"></i> <i class="fa fa-angle-right"></i>
</a> </a>
{{/next}} {{/next}}
</nav>
<div style="clear: both"></div>
</nav>
</div>
</div> </div>
{{#if livereload}} <nav class="nav-wide-wrapper" aria-label="Page navigation">
<!-- Livereload script (if served using the cli tool) --> {{#previous}}
<script type="text/javascript"> <a rel="prev" href="{{ path_to_root }}{{link}}" class="nav-chapters previous" title="Previous chapter"
var socket = new WebSocket("{{{livereload}}}"); aria-label="Previous chapter" aria-keyshortcuts="Left">
socket.onmessage = function (event) { <i class="fa fa-angle-left"></i>
if (event.data === "reload") { </a>
socket.close(); {{/previous}}
location.reload();
}
};
window.onbeforeunload = function() { {{#next}}
<a rel="next" href="{{ path_to_root }}{{link}}" class="nav-chapters next" title="Next chapter"
aria-label="Next chapter" aria-keyshortcuts="Right">
<i class="fa fa-angle-right"></i>
</a>
{{/next}}
</nav>
</div>
{{#if livereload}}
<!-- Livereload script (if served using the cli tool) -->
<script type="text/javascript">
var socket = new WebSocket("{{{livereload}}}");
socket.onmessage = function (event) {
if (event.data === "reload") {
socket.close(); socket.close();
location.reload();
} }
</script> };
{{/if}}
{{#if google_analytics}} window.onbeforeunload = function () {
<!-- Google Analytics Tag --> socket.close();
<script type="text/javascript"> }
var localAddrs = ["localhost", "127.0.0.1", ""]; </script>
{{/if}}
// make sure we don't activate google analytics if the developer is {{#if google_analytics}}
// inspecting the book locally... <!-- Google Analytics Tag -->
if (localAddrs.indexOf(document.location.hostname) === -1) { <script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ var localAddrs = ["localhost", "127.0.0.1", ""];
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', '{{google_analytics}}', 'auto'); // make sure we don't activate google analytics if the developer is
ga('send', 'pageview'); // inspecting the book locally...
} if (localAddrs.indexOf(document.location.hostname) === -1) {
</script> (function (i, s, o, g, r, a, m) {
{{/if}} i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
{{#if playpen_line_numbers}} ga('create', '{{google_analytics}}', 'auto');
<script type="text/javascript"> ga('send', 'pageview');
window.playpen_line_numbers = true; }
</script> </script>
{{/if}} {{/if}}
{{#if playpen_copyable}}
<script type="text/javascript">
window.playpen_copyable = true;
</script>
{{/if}}
{{#if playpen_js}} {{#if playpen_line_numbers}}
<script src="{{ path_to_root }}ace.js" type="text/javascript" charset="utf-8"></script> <script type="text/javascript">
<script src="{{ path_to_root }}editor.js" type="text/javascript" charset="utf-8"></script> window.playpen_line_numbers = true;
<script src="{{ path_to_root }}mode-rust.js" type="text/javascript" charset="utf-8"></script> </script>
<script src="{{ path_to_root }}theme-dawn.js" type="text/javascript" charset="utf-8"></script> {{/if}}
<script src="{{ path_to_root }}theme-tomorrow_night.js" type="text/javascript" charset="utf-8"></script>
{{/if}}
{{#if search_js}} {{#if playpen_copyable}}
<script src="{{ path_to_root }}elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> <script type="text/javascript">
<script src="{{ path_to_root }}mark.min.js" type="text/javascript" charset="utf-8"></script> window.playpen_copyable = true;
<script src="{{ path_to_root }}searcher.js" type="text/javascript" charset="utf-8"></script> </script>
{{/if}} {{/if}}
<script src="{{ path_to_root }}clipboard.min.js" type="text/javascript" charset="utf-8"></script> {{#if playpen_js}}
<script src="{{ path_to_root }}highlight.js" type="text/javascript" charset="utf-8"></script> <script src="{{ path_to_root }}ace.js" type="text/javascript" charset="utf-8"></script>
<script src="{{ path_to_root }}book.js" type="text/javascript" charset="utf-8"></script> <script src="{{ path_to_root }}editor.js" type="text/javascript" charset="utf-8"></script>
<script src="{{ path_to_root }}mode-rust.js" type="text/javascript" charset="utf-8"></script>
<script src="{{ path_to_root }}theme-dawn.js" type="text/javascript" charset="utf-8"></script>
<script src="{{ path_to_root }}theme-tomorrow_night.js" type="text/javascript" charset="utf-8"></script>
{{/if}}
<!-- Custom JS scripts --> {{#if search_js}}
{{#each additional_js}} <script src="{{ path_to_root }}elasticlunr.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" src="{{ ../path_to_root }}{{this}}"></script> <script src="{{ path_to_root }}mark.min.js" type="text/javascript" charset="utf-8"></script>
{{/each}} <script src="{{ path_to_root }}searcher.js" type="text/javascript" charset="utf-8"></script>
{{/if}}
{{#if is_print}} <script src="{{ path_to_root }}clipboard.min.js" type="text/javascript" charset="utf-8"></script>
{{#if mathjax_support}} <script src="{{ path_to_root }}highlight.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript"> <script src="{{ path_to_root }}book.js" type="text/javascript" charset="utf-8"></script>
window.addEventListener('load', function() {
MathJax.Hub.Register.StartupHook('End', function() { <!-- Custom JS scripts -->
{{#each additional_js}}
<script type="text/javascript" src="{{ ../path_to_root }}{{this}}"></script>
{{/each}}
{{#if is_print}}
{{#if mathjax_support}}
<script type="text/javascript">
window.addEventListener('load', function () {
MathJax.Hub.Register.StartupHook('End', function () {
window.setTimeout(window.print, 100); window.setTimeout(window.print, 100);
}); });
}); });
</script> </script>
{{else}} {{else}}
<script type="text/javascript"> <script type="text/javascript">
window.addEventListener('load', function() { window.addEventListener('load', function () {
window.setTimeout(window.print, 100); window.setTimeout(window.print, 100);
}); });
</script> </script>
{{/if}} {{/if}}
{{/if}} {{/if}}
</body>
</body>
</html> </html>

View File

@ -12,6 +12,7 @@ use std::path::Path;
use crate::errors::*; use crate::errors::*;
pub static INDEX: &[u8] = include_bytes!("index.hbs"); pub static INDEX: &[u8] = include_bytes!("index.hbs");
pub static HEAD: &[u8] = include_bytes!("head.hbs");
pub static HEADER: &[u8] = include_bytes!("header.hbs"); pub static HEADER: &[u8] = include_bytes!("header.hbs");
pub static CHROME_CSS: &[u8] = include_bytes!("css/chrome.css"); pub static CHROME_CSS: &[u8] = include_bytes!("css/chrome.css");
pub static GENERAL_CSS: &[u8] = include_bytes!("css/general.css"); pub static GENERAL_CSS: &[u8] = include_bytes!("css/general.css");
@ -42,6 +43,7 @@ pub static FONT_AWESOME_OTF: &[u8] = include_bytes!("FontAwesome/fonts/FontAweso
#[derive(Debug, PartialEq)] #[derive(Debug, PartialEq)]
pub struct Theme { pub struct Theme {
pub index: Vec<u8>, pub index: Vec<u8>,
pub head: Vec<u8>,
pub header: Vec<u8>, pub header: Vec<u8>,
pub chrome_css: Vec<u8>, pub chrome_css: Vec<u8>,
pub general_css: Vec<u8>, pub general_css: Vec<u8>,
@ -72,6 +74,7 @@ impl Theme {
{ {
let files = vec![ let files = vec![
(theme_dir.join("index.hbs"), &mut theme.index), (theme_dir.join("index.hbs"), &mut theme.index),
(theme_dir.join("head.hbs"), &mut theme.head),
(theme_dir.join("header.hbs"), &mut theme.header), (theme_dir.join("header.hbs"), &mut theme.header),
(theme_dir.join("book.js"), &mut theme.js), (theme_dir.join("book.js"), &mut theme.js),
(theme_dir.join("css/chrome.css"), &mut theme.chrome_css), (theme_dir.join("css/chrome.css"), &mut theme.chrome_css),
@ -114,6 +117,7 @@ impl Default for Theme {
fn default() -> Theme { fn default() -> Theme {
Theme { Theme {
index: INDEX.to_owned(), index: INDEX.to_owned(),
head: HEAD.to_owned(),
header: HEADER.to_owned(), header: HEADER.to_owned(),
chrome_css: CHROME_CSS.to_owned(), chrome_css: CHROME_CSS.to_owned(),
general_css: GENERAL_CSS.to_owned(), general_css: GENERAL_CSS.to_owned(),
@ -168,6 +172,7 @@ mod tests {
fn theme_dir_overrides_defaults() { fn theme_dir_overrides_defaults() {
let files = [ let files = [
"index.hbs", "index.hbs",
"head.hbs",
"header.hbs", "header.hbs",
"favicon.png", "favicon.png",
"css/chrome.css", "css/chrome.css",
@ -194,6 +199,7 @@ mod tests {
let empty = Theme { let empty = Theme {
index: Vec::new(), index: Vec::new(),
head: Vec::new(),
header: Vec::new(), header: Vec::new(),
chrome_css: Vec::new(), chrome_css: Vec::new(),
general_css: Vec::new(), general_css: Vec::new(),