Skip to content

Commit

Permalink
Rebranding
Browse files Browse the repository at this point in the history
  • Loading branch information
Fariz Luqman committed Feb 15, 2017
1 parent ddd8851 commit 4298761
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion resources/views/admin/home.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
-->
<html>
<?php
$data = [ 'title' => 'StupidlySimple | Home' ];
$data = [ 'title' => 'StupidlySimple PHP | Home' ];
Core\Viewer::file('../layouts/head.php', $data); ?>
<body>
<!-- Wrapper -->
Expand Down
4 changes: 2 additions & 2 deletions resources/views/home.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
-->
<html>
<?php
$data = [ 'title' => 'StupidlySimple | Home' ];
$data = [ 'title' => 'StupidlySimple PHP | Home' ];
Core\Viewer::file('layouts/head.php', $data); ?>
<body>
<!-- Wrapper -->
Expand All @@ -20,7 +20,7 @@
<div id="main">
<div class="inner">
<header>
<h1>Fully baked micro-framework<br>ready to be served.</h1>
<h1>Fully baked PHP micro-framework<br>ready to be served.</h1>
<p>This is your very fresh homepage. All template files are located in <code>/resources/views</code>
from the root directory. You can read tutorials and documentations on <a target="_blank" href="https://stupidlysimple.github.io">our website</a>
or even from here.
Expand Down
8 changes: 4 additions & 4 deletions resources/views/layouts/footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
<div class="inner">
<section>
<h2>About</h2>
<p>Have any thoughts? Found any bugs or issues when you are using StupidlySimple framework? Report it on GitHub</p>
<a target="_blank" href="https://github.com/stupidlysimple/framework/issues" class="button special">GitHub Page</a>
<p>Have any thoughts? Found any bugs or issues when you are using StupidlySimple PHP framework? Report it on GitHub</p>
<a target="_blank" href="https://github.com/stupidlysimple/php/issues" class="button special">GitHub Page</a>
</section>
<section>
<h2>Follow</h2>
<ul class="icons">
<li><a href="https://www.facebook.com/stupidlysimpleforum" class="icon style2 fa-facebook"><span class="label">Facebook</span></a></li>
<li><a href="https://github.com/stupidlysimple/framework" class="icon style2 fa-github"><span class="label">Github</span></a></li>
<li><a href="https://github.com/stupidlysimple/php" class="icon style2 fa-github"><span class="label">Github</span></a></li>
</ul>
</section>
<ul class="copyright">
<li>Powered by StupidlySimple</li>
<li>Powered by StupidlySimple PHP</li>
<li>Design: <a target="_blank" href="http://html5up.net">HTML5 UP</a></li>
</ul>
</div>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/layouts/top.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<!-- Logo -->
<a href="home" class="logo">
<span class="symbol"><img src="resources/assets/images/logo.png" alt=""/></span><span class="title">StupidlySimple</span>
<span class="symbol"><img src="resources/assets/images/logo.png" alt=""/></span><span class="title">StupidlySimple PHP</span>
</a>

<!-- Nav -->
Expand Down
2 changes: 1 addition & 1 deletion resources/views/model.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
-->
<html>
<?php
$data = [ 'title' => 'StupidlySimple | Service' ];
$data = [ 'title' => 'StupidlySimple PHP | Service' ];
Core\Viewer::file('layouts/head.php', $data); ?>
<body>
<!-- Wrapper -->
Expand Down
2 changes: 1 addition & 1 deletion resources/views/routing.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
-->
<html>
<?php
$data = [ 'title' => 'StupidlySimple | Service' ];
$data = [ 'title' => 'StupidlySimple PHP | Service' ];
Core\Viewer::file('layouts/head.php', $data); ?>
<body>
<!-- Wrapper -->
Expand Down
2 changes: 1 addition & 1 deletion resources/views/service.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
-->
<html>
<?php
$data = [ 'title' => 'StupidlySimple | Service' ];
$data = [ 'title' => 'StupidlySimple PHP | Service' ];
Core\Viewer::file('layouts/head.php', $data); ?>
<body>
<!-- Wrapper -->
Expand Down

0 comments on commit 4298761

Please sign in to comment.