jekyll: made all image/css links relative
This commit is contained in:
parent
e697a2d6cf
commit
b72273b2a9
|
@ -22,7 +22,7 @@ and their features, see [docs/devices.md](docs/devices.md).
|
|||
|
||||
Pre-built packages are available for a few Linux distros.
|
||||
|
||||
* Debian 7 (Wheezy) or higher: packages in this [repository][debian]
|
||||
* Debian 7 (Wheezy) or higher: packages in this [repository](docs/debian.md)
|
||||
* Ubuntu/Kubuntu 12.04+: [ppa:daniel.pavel/solaar][ppa]
|
||||
|
||||
The `solaar` package uses a standard system tray implementation; to ensure
|
||||
|
@ -33,7 +33,6 @@ integration with *gnome-shell* or *Unity*, install `solaar-gnome3`.
|
|||
* an [Arch package][arch], courtesy of Arnaud Taffanel
|
||||
|
||||
[ppa]: http://launchpad.net/~daniel.pavel/+archive/solaar
|
||||
[debian]: http://pwr.github.io/Solaar/packages/
|
||||
[gentoo]: http://code.r3pek.org/gentoo-overlay/src
|
||||
[opensuse]: http://software.opensuse.org/package/Solaar
|
||||
[arch]: http://aur.archlinux.org/packages/solaar
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
title: Solaar
|
||||
tagline: Linux devices manager for the Logitech Unifying Receiver.
|
||||
root: /Solaar/
|
||||
owner: pwr
|
||||
owner_url: https://github.com/pwr
|
||||
repository: https://github.com/pwr/Solaar
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
<meta charset='utf-8' />
|
||||
<meta name="description" content="{{ site.tagline }}" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" media="screen" href="{{ site.root }}style/stylesheet.css">
|
||||
<link rel="icon" type="image/png" href="{{ site.root }}images/favicon.png" />
|
||||
<link rel="stylesheet" type="text/css" media="screen" href="style/stylesheet.css">
|
||||
<link rel="icon" type="image/png" href="images/favicon.png" />
|
||||
|
||||
<title>{{ page.title }}</title>
|
||||
</head>
|
||||
|
@ -16,7 +16,7 @@
|
|||
<header class="inner">
|
||||
<a id="forkme_banner" href="{{ site.repository }}">View on GitHub</a>
|
||||
|
||||
<h1 id="project_title"><img class="logo" alt="logo" src="{{ site.root }}images/solaar-logo.png" /> {{ site.title }}</h1>
|
||||
<h1 id="project_title"><img class="logo" alt="logo" src="images/solaar-logo.png" /> {{ site.title }}</h1>
|
||||
<h2 id="project_tagline">{{ site.tagline }}</h2>
|
||||
|
||||
<section id="downloads">
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
<meta charset='utf-8' />
|
||||
<meta name="description" content="{{ site.tagline }}" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" media="screen" href="{{ site.root }}style/stylesheet.css">
|
||||
<link rel="icon" type="image/png" href="{{ site.root }}images/favicon.png" />
|
||||
<link rel="stylesheet" type="text/css" media="screen" href="style/stylesheet.css">
|
||||
<link rel="icon" type="image/png" href="images/favicon.png" />
|
||||
|
||||
<title>{{ page.title }}</title>
|
||||
</head>
|
||||
|
@ -15,7 +15,7 @@
|
|||
<div id="header_wrap" class="outer">
|
||||
<header class="inner">
|
||||
<h1 id="project_title">
|
||||
<a href="{{ site.root }}index.html"><img alt="logo" class="logo" src="{{ site.root }}images/solaar-logo.png" /> {{ site.title }}</a>
|
||||
<a href="index.html"><img alt="logo" class="logo" src="images/solaar-logo.png" /> {{ site.title }}</a>
|
||||
</h1>
|
||||
</header>
|
||||
</div>
|
||||
|
|
|
@ -81,7 +81,7 @@ if test -x /usr/bin/dpkg-scanpackages; then
|
|||
rm -f *.build
|
||||
dpkg-scanpackages -m . > Packages
|
||||
dpkg-scansources . > Sources
|
||||
add_md docs/debian-repo.md packages/index.md
|
||||
add_md docs/debian.md
|
||||
cd -
|
||||
fi
|
||||
|
||||
|
@ -118,7 +118,7 @@ done
|
|||
fix_times README.md index.html
|
||||
fix_times docs/devices.md devices.html
|
||||
fix_times docs/installation.md installation.html
|
||||
fix_times docs/debian-repo.md packages/index.html
|
||||
fix_times docs/debian.md debian.html
|
||||
fix_times jekyll/images images
|
||||
fix_times share/solaar/icons/solaar.svg images/solaar-logo.png
|
||||
fix_times share/solaar/icons/solaar.svg images/favicon.png
|
||||
|
|
Loading…
Reference in New Issue