58 lines
1.9 KiB
PHP
58 lines
1.9 KiB
PHP
<p class='intro'>
|
|
Thank you for visiting our web site. Friendship Tours International (FTI)
|
|
is a travel agency that specializes in travel planning for Christian
|
|
organizations and individuals. We strive to give you the best possible
|
|
fares for your trip, as we realize the budget constraints of many non-profit
|
|
organizations. Please take a moment to browse our site and feel free to send
|
|
us your comments.
|
|
</p>
|
|
|
|
<div id='news-jumper'>
|
|
<select id='news-jumper-select'>
|
|
<option value=''>Jump to news post</option>
|
|
<?php for($c = count($this->data['news']) - 1; $c >= 0; $c--): ?>
|
|
<option value='news_<?php echo $this->data['news'][$c]['id'] ?>'><?php echo $this->data['news'][$c]->title ?></option>
|
|
<?php endfor; ?>
|
|
</select>
|
|
</div>
|
|
<div id="news" class='page-box-left'>
|
|
<h2>News Updates</h2>
|
|
<?php for($c = count($this->data['news']) - 1; $c >= 0; $c--): ?>
|
|
<div class="news-item">
|
|
<h3 id='news_<?php echo $this->data['news'][$c]['id'] ?>'><?php echo $this->data['news'][$c]->title ?></h3>
|
|
<?php if(count($this->data['news']) > $c): ?>
|
|
<p class='top-link'>- <a href='#top' title='Go to top of page'>top</a> -</p>
|
|
<?php endif; ?>
|
|
<?php echo nl2br(xml_nl_to_paragraph(xml_parse_bbcode((string)$this->data['news'][$c]->text))) ?>
|
|
</div>
|
|
<?php endfor; ?>
|
|
</div>
|
|
|
|
<div id="contact-info" class='page-box-right'>
|
|
<h2>Contact Information</h2>
|
|
<p>
|
|
<strong>E-mail:</strong><br />
|
|
<a href='mailto:travel@friendshiptours.org' title='E-mail Friendship Tours'>
|
|
travel@friendshiptours.org
|
|
</a>
|
|
</p>
|
|
<hr />
|
|
<p>
|
|
<strong>Telephone Number:</strong><br />
|
|
(218) 824-8000
|
|
</p>
|
|
<hr />
|
|
<p>
|
|
<strong>Fax Number:</strong><br />
|
|
(218) 824-8001
|
|
</p>
|
|
<hr />
|
|
<p>
|
|
<strong>Address:</strong><br />
|
|
Friendship Tours International<br />
|
|
John Nielsen<br />
|
|
2029 S. 6th Street Ste 106<br />
|
|
Brainerd, MN 56401<br />
|
|
USA<br />
|
|
</p>
|
|
</div>
|