-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeForces.php
More file actions
34 lines (34 loc) · 1.29 KB
/
codeForces.php
File metadata and controls
34 lines (34 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
require 'api.php';
?>
<?php
foreach ($contest->objects as $key){
$end_contest = new \DateTime($key->end);
$end_contest_format = $end_contest->format('h:i a d.m.Y');
$start_contest = new \DateTime($key->start);
$start_contest_format = $start_contest->format('h:i a d.m.Y');
if($key->resource->id==1){
?>
<div class="col-sm">
<div class="cardCss" style="color:#005BB8;background-color: #fff">
<img src="logos/codeforces logo.png" alt="Avatar" style="height:100px;width:300px;">
<div class="containerCss">
<p class="h6 text-center" style="border-bottom: 1px solid red;"><strong><?php echo $key->event; ?></strong></p>
<center><a href=<?php echo $key->href; ?> style="text-align: center;word-wrap:break-word;"><?php echo $key->href ?></a></center>
<div class="row" style="border-top: 1px solid red;margin-left:12px;margin-right: 12px;">
<div class="col-sm" >
<p style="float:left;">Start = <?php require 'start_contest_offset.php'; ?></p>
</div>
<div class="col-sm">
<p style="float:right;">End = <?php require 'end_contest_offset.php'; ?></p>
</div>
</div>
<div class="row" style="border-top: 1px solid red;margin-left:12px;margin-right: 12px;">
<div class="col-sm text-center">
Remainder
</div>
</div>
</div>
</div>
</div>
<?php } } ?>