Merging fix for relative paths by @epicwhale

Fixes #35
Fixes #29
Fixes #26
Fixes #7
Cette révision appartient à :
Justin Walsh 2013-07-22 11:07:43 -05:00
Parent cd4ded1120
révision 9a9d7efd9a
4 fichiers modifiés avec 5 ajouts et 5 suppressions

Voir le fichier

@ -61,7 +61,7 @@ If you want to create a beautiful landing page for your project, simply create a
{
"title": "Daux.io",
"tagline": "The Easiest Way To Document Your Project",
"image": "/img/app.png"
"image": "img/app.png"
}
Note: The image can be a local or remote image.

Voir le fichier

@ -61,7 +61,7 @@ If you want to create a beautiful landing page for your project, simply create a
{
"title": "Daux.io",
"tagline": "The Easiest Way To Document Your Project",
"image": "/img/app.png"
"image": "img/app.png"
}
Note: The image can be a local or remote image.

Voir le fichier

@ -1,7 +1,7 @@
{
"title": "DAUX.IO",
"tagline": "The Easiest Way To Document Your Project",
"image": "/img/app.png",
"image": "img/app.png",
"theme": "navy",
"repo": "justinwalsh/daux.io",
"twitter": ["justin_walsh", "todaymade"],

Voir le fichier

@ -87,7 +87,7 @@ if ($homepage && $homepage_url !== '/') {
<meta name="description" content="<?php echo $options['tagline'];?>" />
<meta name="author" content="<?php echo $options['title']; ?>">
<?php if ($options['colors']) { ?>
<link rel="icon" `<?php echo $base_url ?>img/favicon.png" type="image/x-icon">
<link rel="icon" href="<?php echo $base_url ?>/img/favicon.png" type="image/x-icon">
<?php } else { ?>
<link rel="icon" href="<?php echo $base_url ?>/img/favicon-<?php echo $options['theme'];?>.png" type="image/x-icon">
<?php } ?>