Show sourcecode

The following files exists in this folder. Click to view.

test/

.idea/
audio/
blokket.php
blokket2.php
dbtest.php
edit-stylesheet-process.php
edit-stylesheet.php
edit-stylesheet_original.php
ex/
favorites.php
img/
incl/
kmom03_get.php
kmom03_getform.php
kmom03_postform.php
kmom03_validate.php
login.php
login_MOS.php
me.php
report.php
select-stylesheet-process.php
select-stylesheet.php
select-stylesheet_original.php
social.php
src/
style/
style-default.php
style-default_original.php
style.php
style_original.php
test.php
viewsource.php

favorites.php

1 lines UTF-8 Unix (LF)
1
<?php include("incl/config.php"); ?>

<?php $pageTitle = "My favorite things"; ?>

<?php $pageId = "favorites"; ?>

<?php include("incl/header.php"); ?>

<!-- Sidans/Dokumentets huvudsakliga innehåll -->
<article class="justify center" style="width:90%">
<h1>MY FAVORITE THINGS</h1>

<p><strong>Some of my favorite computer games (in no particular order):</strong></p>
<ul>
  <li><a href="http://en.wikipedia.org/wiki/Deus_ex">Deus Ex</a></li>
  <li><a href="http://en.wikipedia.org/wiki/Half-Life_%28video_game%29">Half-Life</a></li>
  <li><a href="http://en.wikipedia.org/wiki/Chrono_Trigger">Chrono Trigger</a></li>
  <li><a href="http://en.wikipedia.org/wiki/Baldur%27s_Gate_II:_Shadows_of_Amn">Baldur's Gate 2: Shadows of Amn</a></li>
  <li><a href="http://en.wikipedia.org/wiki/Batman_arkham_city">Batman: Arkham City</a> (It's based on me.)</li> 
</ul>

<!-- YouTube's embed code had a deprecated frameborder property, which I removed. -->
<p>Trailer for "Batman: Arkham City":</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/muCtJsy-d9w" allowfullscreen></iframe>

<p><strong>Some of my favorite TV series (ranked):</strong></p>
<ol>
  <li><a href="http://www.imdb.com/title/tt1839578">Person of Interest</a></li>
  <li><a href="http://www.imdb.com/title/tt0877057">Death Note</a></li>
  <li><a href="http://www.imdb.com/title/tt0094517">Mystery Science Theater 3000</a></li>
  <li><a href="http://www.imdb.com/title/tt0118421">Oz</a></li>
  <li><a href="http://www.imdb.com/title/tt1475582">Sherlock</a></li>
  <li><a href="http://www.imdb.com/title/tt0094525">Poirot</a></li>
</ol>

<!-- YouTube's embed code had a deprecated frameborder property, which I removed. -->
<p>Preview for "Person of Interest":</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/X4oXgimJYgA" allowfullscreen></iframe>

<p><strong>Some of my favorite musicians/bands (in no particular order):</strong></p>
<ul>
  <li><a href="http://en.wikipedia.org/wiki/Flobots">Flobots</a></li>
  <li><a href="http://en.wikipedia.org/wiki/Bad_Religion">Bad Religion</a></li>
  <li><a href="http://en.wikipedia.org/wiki/Rise_Against">Rise Against</a></li>
  <li><a href="http://en.wikipedia.org/wiki/Philip_Glass">Philip Glass</a></li>
  <li><a href="http://en.wikipedia.org/wiki/Strike_Anywhere">Strike Anywhere</a></li>
  <li><a href="http://en.wikipedia.org/wiki/System_of_a_Down">System of a Down</a></li>
</ul>

<p>Philip Glass' "Japura River", from the album "Aguas de Amazonia":</p>
<audio controls="controls" src="audio/JapuraRiver.mp3">The browser does not support the audio tag.</audio>

</article>

<?php include("incl/footer.php"); ?>