Skip to content
This repository was archived by the owner on Nov 16, 2022. It is now read-only.

Commit 7eee83d

Browse files
committed
fix search replace error
1 parent e04b78f commit 7eee83d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
## Download
55

6-
Download 1.0.8 https://github.com/brianteeman/haraka/releases/tag/1.0.8
6+
Download 1.0.9 https://github.com/brianteeman/haraka/releases/tag/1.0.9
77

88
### Description
99
While you are developing your web site this plugin will hide the site behind a Coming Soon Page. You can customise the text and select from a combination of over 100 styles. An optional countdown clock and social media links can be displayed. Additionally you can give a secret word, or whitelist one or more IP addresses, to allow access to the site while it is under development.

haraka.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<copyright>(c) 2016 Brian Teeman All rights reserved.</copyright>
77
<authorEmail>brian@teeman.net</authorEmail>
88
<authorUrl>https://brian.teeman.net</authorUrl>
9-
<version>1.0.8</version>
9+
<version>1.0.9</version>
1010
<license>GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html</license>
1111
<description>PLG_SYSTEM_HARAKA_MANIFEST_DESCRIPTION</description>
1212
<updateservers>

manifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<type>plugin</type>
77
<folder>system</folder>
88
<client>site</client>
9-
<version>1.0.8</version>
9+
<version>1.0.9</version>
1010
<downloads>
11-
<downloadurl type="full" format="zip">https://github.com/brianteeman/haraka/archive/1.0.8.zip</downloadurl>
11+
<downloadurl type="full" format="zip">https://github.com/brianteeman/haraka/archive/1.0.9.zip</downloadurl>
1212
</downloads>
1313
<tags>
1414
<tag>stable</tag>

tmpl/default.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
body,h1 span{display:block}.header,body{text-align:center}.content p,.countdown_section,h1{text-shadow:1px 1px 3px #000}body,html{height:100%;font-size:100%;width:100%}body{margin:0;padding:0;color:#fff;background:url('<?php echo $bgimage_url; ?>') center top;background-size:cover;position:relative}.header{width:100%;float:left}#counter,.content{width:60%;padding:0 20%}h1{margin:.8em 0;font-size:6.25em}h1 span{font-size:.2em;line-height:0;font-weight:300}.content p{font-size:1.875em;line-height:1.33em}#counter{margin-top:3.75em;float:left}.countdown_section{color:#fff;display:inline-block;text-align:center;width:15%;box-sizing:border-box;font-size:.938em;text-transform:lowercase;font-style:italic;padding:2.667em 0;border-top:2px solid rgba(255,255,255,.2);border-bottom:2px solid rgba(255,255,255,.2)}.countdown_section:first-child{border-left:0}.countdown_amount{color:#fff;display:block;font-size:3.33em;font-weight:700;font-style:normal;line-height:.75em}.social{width:40%;float:left;padding:0 30%;margin:3.125em 0 0}.social ul li{display:inline;margin:0 1.25em}.social ul li a{color:#fff}@media only screen and (max-width:1024px){body{font-size:90%}.content{width:80%;padding:0 10%}#counter,.social{width:60%;float:left;padding:0 20%}#counter{margin-top:3.75em}.social{margin:3.125em 0 0}}@media only screen and (max-width:768px){.content p,h1{text-shadow:1px 1px 3px #000}#counter,.content,.social{width:90%;padding:0 5%}body{font-size:80%}h1{margin:.3em 0 .6em;font-size:5.25em;line-height:.9em}.content p{font-size:1.475em;line-height:1.63em}#counter{margin-top:3.75em;float:left}.social{float:left;margin:2.125em 0 0}.social ul{width:100%;float:left}}
2525
body {font-family: '<?php echo $fontcss[0]; ?>';}.countdown_section, h1 span {font-family: '<?php echo $fontcss[1]; ?>';}.content p {font-family: '<?php echo $fontcss[1]; ?>';}.countdown_amount {font-family: '<?php echo $fontcss[0]; ?>';}
2626
</style>
27-
<link href="//fonts.googleapis.com/css?family=<?php echo $fontcsss; ?>" rel="stylesheet">
27+
<link href="//fonts.googleapis.com/css?family=<?php echo $fonts; ?>" rel="stylesheet">
2828
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" rel="stylesheet">
2929
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
3030
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery.countdown/2.2.0/jquery.countdown.min.js"></script>
@@ -33,7 +33,7 @@
3333
<body>
3434
<div class="header">
3535
<h1 id="logo"><?php echo $title; ?><span><?php echo $caption; ?></span></h1>
36-
</div>
36+
</div>s
3737
<div class="content">
3838
<?php echo $text; ?>
3939
</div>

0 commit comments

Comments
 (0)