-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Robin de Graaf
committed
Mar 12, 2017
1 parent
569f4b6
commit 8d2baf8
Showing
10 changed files
with
219 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<?php /** @var $this \Parable\Framework\View */ ?> | ||
<!DOCTYPE HTML> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | ||
|
||
<title>Hello from <?=$this->config->get('app.title');?> <?=$this->app->getVersion();?></title> | ||
|
||
<!-- Raleway font from google fonts --> | ||
<link href='https://fonts.googleapis.com/css?family=Raleway:100,400' rel='stylesheet' type='text/css'> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" /> | ||
|
||
<link rel="icon" type="image/png" href="<?=$this->url->getUrl('images/icon-32.png');?>" /> | ||
|
||
<style> | ||
* { | ||
font-family: 'Raleway', sans-serif; | ||
font-weight: 400; | ||
} | ||
.container { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
margin: auto; | ||
width: 100%; | ||
height: 4rem; | ||
line-height: 4rem; | ||
|
||
text-align: center; | ||
color: #4533b7; | ||
|
||
animation: fade-in 2s forwards; | ||
} | ||
a { | ||
color: #7e5deb; | ||
text-decoration: none; | ||
} | ||
a:hover { | ||
text-decoration: underline; | ||
} | ||
.container header { | ||
font-weight: 100; | ||
font-size: 4.15rem; | ||
} | ||
.container aside { | ||
font-size: 0.72rem; | ||
margin-top: -0.8rem; | ||
letter-spacing: 4px; | ||
margin-left: 3px; | ||
} | ||
@keyframes fade-in { | ||
from {opacity: 0;} | ||
to {opacity: 1;} | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
||
test with multiple parameters: | ||
|
||
<br /><br /> | ||
|
||
ID: <?=$this->internal->get('id');?><br /> | ||
NAME: <?=$this->internal->get('name');?><br /> | ||
|
||
</body> | ||
</html> |