Merging fix for relative paths by @epicwhale
Fixes #35 Fixes #29 Fixes #26 Fixes #7
This commit is contained in:
parent
cd4ded1120
commit
9a9d7efd9a
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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"],
|
||||
@ -12,4 +12,4 @@
|
||||
"Help/Support/Bugs": "https://github.com/justinwalsh/daux.io/issues",
|
||||
"Made by Todaymade": "http://todaymade.com"
|
||||
}
|
||||
}
|
||||
}
|
@ -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 } ?>
|
||||
|
Loading…
x
Reference in New Issue
Block a user