fix import of bulleted lists
[dcaas.git] / index.php
blob:a/index.php -> blob:b/index.php
<?php <?php
include("config.php"); include("config.php");
require_once(__ROOT__ . '/lib/tag-cloud/src/lotsofcode/TagCloud/TagCloud.php'); require_once(__ROOT__ . '/lib/tag-cloud/src/lotsofcode/TagCloud/TagCloud.php');
   
includeHeader("title"); includeHeader("Data Centre as a Service (DCaaS)");
?> ?>
<div class="jumbotron"> <div class="jumbotron">
<div class="container"> <div class="container">
<div style="float:left; margin: 5%; display:block"> <div style="float:left;
  margin-top: 10%;
  display: block;
  margin-bottom: 12%;
  margin-right: 5%;">
<img src="img/icon_2567.png" width="100" height="100"/> <img src="img/icon_2567.png" width="100" height="100"/>
</div> </div>
<h1>Hello, world!</h1> <h1>Data Centre as a Service (DCaaS)!</h1>
   
<p>This is a template for a simple marketing or informational website. It includes a large callout called a <p>The <a
jumbotron and three supporting pieces of content. Use it as a starting point to create something more href="http://www.finance.gov.au/policy-guides-procurement/data-centres/data-centre-as-a-service-dcaas-multi-use-list-mul-fact-sheet/">Data
unique.</p> Centre as a Service (DCaaS) Multi Use List (MUL)</a> provides Australian Government Agencies with a simple way to procure
  Cloud and Cloud-Like services. Contracts through the DCaaS MUL are limited to $80,000 (inc GST) and terms up
  to 12 months.<br/>
  The DCaaS MUL is available to Commonwealth FMA Act agencies as well as other Commonwealth, State and
  Territory Government bodies.
  </p>
   
<p><a class="btn btn-primary btn-lg" role="button" href="table.php">Learn more &raquo;</a></p> <p><a class="btn btn-primary btn-lg" role="button" href="table.php">Browse Available Services &raquo;</a></p>
   
</div> </div>
</div> </div>
   
<div class="container"> <div class="container">
<?php <?php
$cloud = new lotsofcode\TagCloud\TagCloud(); $cloud = new lotsofcode\TagCloud\TagCloud();
foreach ($db->query("Select service_name from dcaas_services;") as $row) { foreach ($db->query("Select service_name from dcaas_services;") as $row) {
foreach (explode(" ", $row[0]) as $word) { foreach (explode(" ", $row[0]) as $word) {
$cloud->addTag($word); $cloud->addTag($word);
} }
} }
$cloud->setMinLength(4); $cloud->setMinLength(4);
echo $cloud->render(); echo $cloud->render();
echo "</div>"; echo "</div>";
includeFooter(); includeFooter();
?> ?>