diff options
author | Paul Dixon <paul.dixon@durham.ac.uk> | 2014-04-04 14:55:08 +0100 |
---|---|---|
committer | Paul Dixon <paul.dixon@durham.ac.uk> | 2014-04-04 14:55:08 +0100 |
commit | b1314273bb44648547adbd1e2b7b724903ac6020 (patch) | |
tree | affad469a82e9668ffa5819ce26af9ca6ac0efd0 /templates/layout.html | |
parent | cb9a0b82ba0478b9a5b37de6f920edff474312e1 (diff) | |
download | gitbook-b1314273bb44648547adbd1e2b7b724903ac6020.zip gitbook-b1314273bb44648547adbd1e2b7b724903ac6020.tar.gz gitbook-b1314273bb44648547adbd1e2b7b724903ac6020.tar.bz2 |
Adding config option for github host
- this config option allows the github host url to be set to
something other than github.com, mainly so that github enterprise
users can change the url to their private host but will also
work with bitbucket
Diffstat (limited to 'templates/layout.html')
-rw-r--r-- | templates/layout.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/layout.html b/templates/layout.html index 8d2a02f..c0f52cb 100644 --- a/templates/layout.html +++ b/templates/layout.html @@ -24,9 +24,9 @@ <meta property="og:type" content="book"> <meta property="og:locale" content="en_US"> - <meta property="book:author" content="https://github.com/{{ githubAuthor }}"> + <meta property="book:author" content="{{ githubHost }}{{ githubAuthor }}"> <meta property="book:tag" content="GitBook"> - + <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> @@ -48,4 +48,4 @@ <script src="{{ staticBase }}/jsrepl/jsrepl.js" id="jsrepl-script"></script> <script src="{{ staticBase }}/app.js"></script> </body> -</html>
\ No newline at end of file +</html> |