Compare commits

..

No commits in common. "b4c852a3c1e43185346df4ee61b5ea198a1f68ff" and "4d4ce6f0a5498e53f1abe70d0bb16e55be1845cc" have entirely different histories.

2 changed files with 3 additions and 11 deletions

View File

@ -44,11 +44,11 @@ if (file_exists($dir) && is_dir($dir) ) {
$link_title = str_replace('_',' ',$file);//Remove undersores and replace them with spaces $link_title = str_replace('_',' ',$file);//Remove undersores and replace them with spaces
$link_title = str_replace($_replace,'',$link_title); $link_title = str_replace($_replace,'',$link_title);
if (file_exists($file."/pfp.png")){ if (file_exists($file."/pfp.png")){
$pfp_path = "$file/pfp.png"; $pfp_path = $file."/pfp.png";
echo("<ul><li><img src=\"$pfp_path\" class=\"pfp\" name=\"$file pfp\"><a href='$file'> $link_title </a></li></ul>\n");//Output the result.
} else { } else {
echo("<ul><li><a href='$file'> $link_title </a></li></ul>\n");//Output the result. $pfp_path = "";
} }
echo("<ul><li><img src=\".$pfp_path\" name=\"$file pfp\" width=\"20\" height=\"20\"><a href='$file'> $link_title </a></li></ul>\n");//Output the result.
} }
} else { } else {
echo "<ul><li><a>No Authors<a></li></ul>"; echo "<ul><li><a>No Authors<a></li></ul>";

View File

@ -125,14 +125,6 @@ img{
img.center_align{ img.center_align{
vertical-align:middle; vertical-align:middle;
} }
img.pfp {
vertical-align: middle;
width: 25px;
height: 25px;
border-radius: 25px;
border-style: solid;
border-width: 1px;
}
.top{ .top{
max-width: 100vw; max-width: 100vw;
float: left; float: left;