Merge branch 'master' of TechEmporium/thunix_wiki into master

> "Just noticed some issues with the ID tagging of your DIV elements, defining your human-readable language & the way your inline CSS."
This commit is contained in:
xdovahkinx 2019-06-30 05:41:06 -04:00 committed by Gitea
commit 3d62715dda
1 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ if ( $page == "") {
}
print "<!DOCTYPE html>
<html lang='e'>
<html lang='en'>
<head>
<title>Thunix Wiki - $page</title>
<link rel='stylesheet' type='text/css' href='includes/site.css'>
@ -16,12 +16,12 @@ print "<!DOCTYPE html>
echo ( shell_exec("/usr/bin/pandoc includes/header.md") );
print "<hr/>
<div id='content' style='width=90%'>
<div id='sidebar' style='20%'>";
<div id='content' style='width: 90%;'>
<div id='sidebar' style='width: 20%;'>";
echo ( shell_exec("/usr/bin/pandoc includes/sidebar.md") );
print " </div>
<div='content' style='width=80%'>";
<div id='content' style='width: 80%;'>";
echo ( shell_exec("/usr/bin/pandoc articles/$page.md") );