-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
38 lines (30 loc) · 1.87 KB
/
about.php
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
35
36
37
38
<?php
ini_set("error_log", "./logs/BeerErrors.log");
include('./php/class.bufferapp.php' );
include('./php/header.php' );
include('./php/kc_class.php');
echo "\n</head>\n<body>\n";
$cur_page = '.' . htmlspecialchars($_SERVER["PHP_SELF"]);
$pageDetails = new kcbeerclass();
$pageDetails->menu_bar("About Page", "", $cur_page);
$Originated = new DateTime("2012-04-01");
$CurrentDate = new DateTime(date("Y-m-d"));
$SiteAge = $Originated->diff($CurrentDate);
$f = new NumberFormatter("en", NumberFormatter::SPELLOUT);
?>
<div class="container" id="main">
<div class="row">
<div class="col-xs-12 " >
<div id="about-kcht" align="left">
<div hidden><h1>About KCHOPTALK</h1></div>
<p style="font-size: 18px;">For the past <? echo trim($f->format($SiteAge->y)); ?> years Kansas City Hop Talk has been a popular content curation site intent on keeping local beer enthusiasts informed about craft beer. The information is gathered through the constant monitoring of blog sites, news media, social media and other beverage related sites for anything relevant to craft beer.</p>
<p style="font-size: 18px;">It’s the site one builds when they have a great passion for their favorite beverage, and they want to share content with others online. Since the beginning, it’s my intent to make it easy for someone to find content related to beer and beer brewing.</p>
<p style="font-size: 18px;">KC Hop Talk will always be dedicated to craft beer fans of Kansas City, and this site will deliver the most up-to-date information directly to the “Craft Beer” Community.</p>
<p style="font-size: 18px;"></p>
</div>
</div><!-- /.blog-main -->
</div><!-- /.row -->
</div>
<?php
$pageDetails->page_footer();
?>