List of commits:
Subject Hash Author Date (UTC)
fix(cke): Fix pages simple content. e055ee82b1e82ba3a2e7e07d0526034d404cdbb2 Gabi 2020-03-23 23:01:08
fix(cke): Fix layout. a3ea87f2765da10bf4351ec33986505a4859bc17 Gabi 2020-03-23 22:54:16
feat(navigation): Navigation images 0029e8677788e675f11a39aa6d05516bb9acca4a Gabi 2020-03-23 22:46:39
fix(cke): Fix navigation. 324b2a1ed349e862f43dc3a71c886696e5015420 Gabi 2020-03-23 22:37:02
feat(cke): Pages structure. a814459f44e53490c54c8bb2249c6c965197179e Gabi 2020-03-23 22:32:47
feat(home): Add blog section to homepage. 46d13829e9d3313ad675355fc775121ab95900d5 Gabi 2020-03-23 22:06:10
fix(cke): 404 11c47ce6547528e3b3e0231080b7d2d3cd827db8 Gabi 2020-03-23 17:50:51
fix(cke): Header logo link. 6563dff6a9afe0e9b3cef390848e8abd108d0174 Gabi 2020-03-23 17:42:11
fix(cke): 404 d1cedf7bbe80220c188703b02714c0b089748d1e Gabi 2020-03-23 17:40:55
feat(cke): 404 abd55294660ed8d683595cdf9353cde3fbfeb019 Gabi 2020-03-23 17:37:52
feat(cke): Footer fa7461f76e89dbd398117d828baf3ae1683f3242 Gabi 2020-03-22 19:50:22
feat(cke): Home Slider bfd8ec479aa9d8fe8bdf22f5a05ec4eedd6ce64d Gabi 2020-03-22 19:45:03
feat(cke): Basic layout. 351e7d2a3566e13a624a30496ce96efb6aab7304 Gabi 2020-03-22 18:54:31
build(cke): Deploy htaccess. 11945821044e4eb09db031fdddedea75587d8dbd Gabi 2020-03-22 17:09:31
build(cke): Update deploy 3d8d3a7623f6d036eb0ab0daf4977247e1409891 Gabi 2020-03-22 17:07:07
build(cke): Fix deploy 727b51304ff26321f728d4aefe84bccee8045f6e Gabi 2020-03-22 17:00:25
build(cke): Changed project structure. 3b6747207f946e7b72d1cfe3f7e601c377c4b04a Gabi 2020-03-22 16:53:28
build(cke): Deploy changes 118ec60c2c2d027100d528e84fcc8c35a3739080 Gabi 2020-03-22 16:42:57
fix(cke): Change include syntax. b7f33d2889810311688e4f39fbf20e46ecb837ad Gabi 2020-03-22 16:29:56
feat(cke): Check query params. b3a97739e100e8a5f612bdf2b04df02c5bb9ccda Gabi 2020-03-22 16:12:31
Commit e055ee82b1e82ba3a2e7e07d0526034d404cdbb2 - fix(cke): Fix pages simple content.
Author: Gabi
Author date (UTC): 2020-03-23 23:01
Committer name: Gabi
Committer date (UTC): 2020-03-23 23:01
Parent(s): a3ea87f2765da10bf4351ec33986505a4859bc17
Signing key:
Tree: c4de60fe1a03bd407f1df4e52aaab40896576440
File Lines added Lines deleted
src/php/common/layout.php 2 2
src/php/pages/blog.php 1 0
src/php/pages/contact.php 3 1
src/php/pages/portfolio.php 1 0
src/php/pages/products.php 1 0
src/php/pages/services.php 1 0
File src/php/common/layout.php changed (mode: 100644) (index 808317b..b6b5c92)
1 1 <?php <?php
2 2 if (isset($_GET['path']) && $_GET['path'] !== '') { if (isset($_GET['path']) && $_GET['path'] !== '') {
3 $pagePath = APPDIR . "/pages/$_GET['path'].php";
3 $pagePath = APPDIR . "/pages/{$_GET['path']}.php";
4 4
5 5 if (file_exists($pagePath)) { if (file_exists($pagePath)) {
6 6 $path = $_GET['path']; $path = $_GET['path'];
 
29 29 <!-- animsition-overlay start --> <!-- animsition-overlay start -->
30 30 <main class="animsition-overlay" data-animsition-overlay="true" data-page="<?=$path?>"> <main class="animsition-overlay" data-animsition-overlay="true" data-page="<?=$path?>">
31 31 <?php <?php
32 include APPDIR . "/pages/$path.php";
32 include APPDIR . "/pages/{$path}.php";
33 33 ?> ?>
34 34 </main> </main>
35 35 <!-- animsition-overlay end --> <!-- animsition-overlay end -->
File src/php/pages/blog.php changed (mode: 100644) (index 84a7977..e81a559)
1 1 <?php <?php
2 2 include APPDIR . "/sliders/home.slider.php"; include APPDIR . "/sliders/home.slider.php";
3 include APPDIR . "/sections/blog/first.section.php";
File src/php/pages/contact.php changed (mode: 100644) (index c8d307e..ffa1c7a)
1 <p>Contact</p>
1 <?php
2 include APPDIR . "/sliders/home.slider.php";
3 include APPDIR . "/sections/contact/first.section.php";
File src/php/pages/portfolio.php changed (mode: 100644) (index 84a7977..06100f1)
1 1 <?php <?php
2 2 include APPDIR . "/sliders/home.slider.php"; include APPDIR . "/sliders/home.slider.php";
3 include APPDIR . "/sections/portfolio/first.section.php";
File src/php/pages/products.php changed (mode: 100644) (index 84a7977..bad9fdc)
1 1 <?php <?php
2 2 include APPDIR . "/sliders/home.slider.php"; include APPDIR . "/sliders/home.slider.php";
3 include APPDIR . "/sections/products/first.section.php";
File src/php/pages/services.php changed (mode: 100644) (index 84a7977..7a00b98)
1 1 <?php <?php
2 2 include APPDIR . "/sliders/home.slider.php"; include APPDIR . "/sliders/home.slider.php";
3 include APPDIR . "/sections/services/first.section.php";
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/bitvice/cke

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/bitvice/cke

Clone this repository using git:
git clone git://git.rocketgit.com/user/bitvice/cke

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main