missing semicolons
This commit is contained in:
parent
2a3dddfb73
commit
8af4a2a319
3 changed files with 3 additions and 3 deletions
|
@ -4,7 +4,7 @@ foreach($data as $category => $items){
|
|||
foreach($items as $item => $value){
|
||||
echo "<div class='service'>";
|
||||
echo "<a class='service_link' href='https://".$item.".actcur.com'>";
|
||||
echo "<span class='service_name' title='".$value['summary']"'>".$value['name']."</span>"
|
||||
echo "<span class='service_name' title='".$value['summary']"'>".$value['name']."</span>";
|
||||
echo "</a>";
|
||||
echo "</div>";
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
include "../../includes/retrieve_data.php";
|
||||
$data = retrieve_data("/srv/http/sitedata.yml",false);
|
||||
include "../../includes/layout.php"
|
||||
include "../../includes/layout.php";
|
||||
?>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
include "../../includes/retrieve_data.php";
|
||||
$data = retrieve_data("/srv/http/sitedata.yml",true);
|
||||
include "../../includes/layout.php"
|
||||
include "../../includes/layout.php";
|
||||
?>
|
||||
|
|
Loading…
Add table
Reference in a new issue