This repository has been archived on 2021-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
blog-legacy/views/index.php

11 lines
278 B
PHP
Raw Normal View History

2020-03-06 09:37:56 +01:00
<?php
include_once("lib/articles.php");
$articles = getArticles();
$content = "";
foreach($articles as $article){
$content .= "<article><h1><a href=\"?page=article&ID=".$article["ID"]."\">".$article["title"]."</a></h1><p>".$article["description"]."</p></article><hr/>";
}
?>