11 lines
258 B
PHP
11 lines
258 B
PHP
<?php
|
|
require_once 'functions/init.php';
|
|
require_once 'functions/functions.php';
|
|
|
|
include_once 'components/head.php';
|
|
|
|
include_once 'functions/article_functions.php';
|
|
echo article_page_from_markdown($_GET['article_id']);
|
|
|
|
include_once 'components/foot.php';
|