Last change
on this file was 0791611, checked in by sstalevska <sara.stalevska@…>, 2 years ago |
Push the entire project.
|
-
Property mode
set to
100644
|
File size:
714 bytes
|
Rev | Line | |
---|
[0791611] | 1 | <?php
|
---|
| 2 | require_once('./inc/common.php');
|
---|
| 3 |
|
---|
| 4 | $pageTitle = 'Number of reviews left by reviewers, by yearly quarters';
|
---|
| 5 | $pageSlug = 'home';
|
---|
| 6 |
|
---|
| 7 | require_once('./inc/head.php');
|
---|
| 8 | require_once('./inc/header.php');
|
---|
| 9 | ?>
|
---|
| 10 | <div class="container">
|
---|
| 11 | <h1 class="mt-5"><?= $pageTitle ?></h1>
|
---|
| 12 |
|
---|
| 13 | <?php
|
---|
| 14 | $quarterTitle = 'First';
|
---|
| 15 | $quarterId = 'first_q';
|
---|
| 16 | require('./inc/analytics-table-2.php');
|
---|
| 17 |
|
---|
| 18 | $quarterTitle = 'Second';
|
---|
| 19 | $quarterId = 'second_q';
|
---|
| 20 | require('./inc/analytics-table-2.php');
|
---|
| 21 |
|
---|
| 22 | $quarterTitle = 'Third';
|
---|
| 23 | $quarterId = 'third_q';
|
---|
| 24 | require('./inc/analytics-table-2.php');
|
---|
| 25 |
|
---|
| 26 | $quarterTitle = 'Fourth';
|
---|
| 27 | $quarterId = 'fourth_q';
|
---|
| 28 | require('./inc/analytics-table-2.php');
|
---|
| 29 | ?>
|
---|
| 30 | </div>
|
---|
| 31 | <?php
|
---|
| 32 | require_once('./inc/footer.php');
|
---|
Note:
See
TracBrowser
for help on using the repository browser.