本文整理汇总了PHP中Page::setPageTitle方法的典型用法代码示例。如果您正苦于以下问题:PHP Page::setPageTitle方法的具体用法?PHP Page::setPageTitle怎么用?PHP Page::setPageTitle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Page
的用法示例。
在下文中一共展示了Page::setPageTitle方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Page
<?php
include 'common/page.php';
$page = new Page();
$page->setPathToWebRoot('');
$page->setPageTitle('HPCG - License');
$page->setNavIdentifier('download');
?>
<?php
include 'common/header.html';
?>
<div class="breadcrumb"><a href="download.php">Download</a> - License</div>
<p>HPCG is available for download under a <a href="http://opensource.org/licenses/BSD-3-Clause">New BSD License</a>.</p>
<?php
include 'common/footer.html';
示例2: Page
<?php
include 'common/page.php';
$page = new Page();
$page->setPathToWebRoot('');
$page->setPageTitle('HPCG - Software Design');
$page->setNavIdentifier('about');
?>
<?php
include 'common/header.html';
?>
<div class="breadcrumb"><a href="about.php">About</a> - Software Design</div>
<p> HPCG is a self-contained C++ program with MPI and OpenMP support.</p>
<br/>
<?php
include 'common/footer.html';
示例3: Page
<?php
include 'common/page.php';
$page = new Page();
$page->setPathToWebRoot('');
$page->setPageTitle('HPCG - Contact');
$page->setNavIdentifier('home');
$y = <<<END
th { text-align: left; padding-right: 1em; vertical-align: top;
padding-bottom: 1em; }
td { vertical-align: top; padding-bottom: 1em; }
END;
$page->setInlineStyles($y);
?>
<?php
include 'common/header.html';
?>
<div class="breadcrumb"><a href="default.php">Home</a> - Contact</div>
<table cellspacing="0" cellpadding="0">
<tr><th>Primary Contacts:</th>
<td><a href="http://www.netlib.org/utk/people/JackDongarra/">Jack Dongarra</a></td></tr>
<td><a href="http://www.cs.sandia.gov/~maherou">Michael Heroux,</a></td>
<td><a href="http://web.eecs.utk.edu/~luszczek/">Piotr Luszczek</a></td></tr>
</table>
<?php
示例4: Page
<?php
include 'common/page.php';
$page = new Page();
$page->setPathToWebRoot('');
$page->setPageTitle('HPCG - Developer Tools');
$page->setNavIdentifier('resources');
$x = <<<END
table.lists th { text-align: left; padding: .5em 2em .5em 0;
border-bottom: 1px solid #999; }
table.lists td { padding: .5em 2em .5em 0; border-bottom: 1px solid #999; }
END;
$page->setInlineStyles($x);
?>
<?php
include 'common/header.html';
?>
<div class="breadcrumb"><a href="resources.php">Resources</a> - Developer Tools</div>
<p>Please contact the project leader for access to HPCG developer tools.</p>
<p>Once you have an account on software.sandia.gov and are a member of the Unix groups HPCGDevelopers and HPCGUsers, you can obtain a working copy of the archive using the following command (note this is a single command, even if it appears to be two):</p>
<p>svn checkout svn+ssh://username@software.sandia.gov/space/sandiasvn/private/hpcg/trunk HPCG</p>
<?php
include 'common/footer.html';
示例5: Page
<?php
include 'common/page.php';
$page = new Page();
$page->setPathToWebRoot('');
$page->setPageTitle('SC14 BOF');
$page->setNavIdentifier('events');
?>
<?php
include 'common/header.html';
?>
<div class="breadcrumb"><a href="events.php">Events</a> - SC14 Birds-of-a-Feather</div>
<p> SC'14 New Orleans, LA, USA, Location and Time TBD</p>
<?php
include 'common/footer.html';
示例6: Page
<?php
include 'common/page.php';
$page = new Page();
$page->setPathToWebRoot('');
$page->setPageTitle('HPCG - Documentation');
$page->setNavIdentifier('resources');
$x = <<<END
table.docs td { padding: .5em 2em .5em 0; border-bottom: 1px solid #999; }
ul.docs li { padding-bottom: 1em; }
END;
$page->setInlineStyles($x);
?>
<?php
include 'common/header.html';
?>
<div class="breadcrumb"><a href="resources.php">Resources</a> - Documentation</div>
<p>Reference Documentation for HPCG source files is <a href="html/index.html">here.</a></p>
<?php
include 'common/footer.html';
示例7: Page
<?php
include 'common/page.php';
$page = new Page();
$page->setPathToWebRoot('');
$page->setPageTitle('HPCG - News');
$page->setNavIdentifier('home');
$y = <<<END
div#contentMain li { padding-bottom: 1em; }
END;
$page->setInlineStyles($y);
?>
<?php
include 'common/header.html';
?>
<div class="breadcrumb"><a href="default.php">Home</a> - News</div>
<strong>Thursday, June 26th, 2014</strong> - First list of HPCG ranking results <a href=results.php">released</a>.
<br/><br/>
<strong>Monday, June 3nd, 2014</strong> - HPCG Benchmark Release 2.4 fixes a floating point operation count issue that persisted from Release 2.2.
Release 2.3 is <a href="download.php">available for download</a>. See the <a href="release_notes.php">release notes</a> for more information.<br/><br/>
<strong>Monday, June 2nd, 2014</strong> - HPCG Benchmark Release 2.3 fixes a floating point operation count issue in Release 2.2.
Release 2.3 is <a href="download.php">available for download</a>. See the <a href="release_notes.php">release notes</a> for more information.<br/><br/>
<strong>Wednesday, May 27th, 2014</strong> - HPCG Benchmark Release 2.2, with
reduced penalty for optimization overhead cost, is now <a href="download.php">available for download</a>. See the <a href="release_notes.php">release notes</a> for more information.<br/><br/>
示例8: Page
<?php
include 'common/page.php';
$page = new Page();
$page->setPathToWebRoot('');
$page->setPageTitle('HPCG - Packages');
$page->setNavIdentifier('packages');
?>
<?php
include 'common/header.html';
?>
<div class="breadcrumb">Packages</div>
<ul>
<li><b>Versions of HPCG:</b></li>
<ul>
<li><b>Reference:</b> <a href="downloads/hpcg-2.4.tar.gz">HPCG 2.4 Reference code (June 3, 2014)</a>
<li><b>Reference:</b> <a href="downloads/hpcg-2.3.tar.gz">HPCG 2.3 Reference code (June 2, 2014)</a>
<li><b>Reference:</b> <a href="downloads/hpcg-2.2.tar.gz">HPCG 2.2 Reference code (May 27, 2014)</a>
<li><b>Reference:</b> <a href="downloads/hpcg-2.1.tar.gz">HPCG 2.1 Reference code (January 31, 2014)</a>
<li><b>Reference:</b> <a href="downloads/hpcg-2.0.tar.gz">HPCG 2.0 Reference code (January 28, 2014)</a>
<li><b>Reference:</b> <a href="downloads/hpcg-1.1.tar.gz">HPCG 1.1 Reference code (November 26, 2013)</a>
<li><b>Reference:</b> <a href="downloads/hpcg-1.0.tar.gz">HPCG 1.0 Reference code (November 19, 2013)</a>
<li><b>Reference:</b> <a href="downloads/hpcg-0.5.tar.gz">HPCG 0.5 Reference code (October 25, 2013)</a>
<li><b>Reference:</b> <a href="downloads/hpcg-0.4.tar.gz">HPCG 0.4 Reference code (October 21, 2013)</a>
<li><b>Reference:</b> <a href="downloads/hpcg-0.3.tar.gz">HPCG 0.3 Reference code (September 25, 2013)</a>
</ul>
</ul>
示例9: Page
<?php
include 'common/page.php';
$page = new Page();
$page->setPathToWebRoot('');
$page->setPageTitle('HPCG - Results');
$page->setNavIdentifier('results');
?>
<?php
include 'common/header.html';
?>
<div class="breadcrumb">Results</div>
<h3>HPCG Benchmark Results</h3>
<p><a href=2014-06-hpcg-list.pdf> HPCG Performance Rankings, ISC'14, Leipzig, Germany, 26 June 2014</a></p>
<br/>
<?php
include 'common/footer.html';
示例10: Page
<?php
include 'common/page.php';
$page = new Page();
$page->setPathToWebRoot('');
$page->setPageTitle('HPCG - Events');
$page->setNavIdentifier('events');
?>
<?php
include 'common/header.html';
?>
<div class="breadcrumb">Events</div>
<p>Past HPCG-related events.</p>
<ul>
<li><a href="http://www.netlib.org/utk/people/JackDongarra/SLIDES/sc13-top500-hpcg-FINAL.pdf"> HPCG Overview Talk from SC'13 TOP 500 BOF.(.pdf)</a></li>
<li> <a href="https://www.orau.gov/hpcg2014/default.htm">DOE ASCR HPCG Workshop</a>, March 25, 2014, Washington, DC, USA.</li>
<li> <a href="http://www.isc-events.com/isc14_ap/presentationdetails.htm?t=presentation&o=22&a=select&ra=sessiondetails"> HPCG Presentation at ISC'14</a> ISC'14, June 26, 2014 , Leipzig, Germany.</li>
</ul>
<p>Upcoming HPCG-related events.</p>
<ul>
<li> <a href="http://supercomputing.org"> HPCG BOF at SC'14 (Proposed)</a> SC'14, November, 2014 , New Orleans, LA.</li>
</ul>
<?php
include 'common/footer.html';
示例11: Page
<?php
include 'common/page.php';
$page = new Page();
$page->setPathToWebRoot('');
$page->setPageTitle('HPCG - Team');
$page->setNavIdentifier('about');
$y = <<<END
th { text-align: left; padding-right: 1em; }
END;
$page->setInlineStyles($y);
?>
<?php
include 'common/header.html';
?>
<div class="breadcrumb"><a href="about.php">About</a> - Team</div>
<table cellspacing="0" cellpadding="0">
<tr><th>Leaders:       </th>
<td><a href="http://www.cs.sandia.gov/~maherou/">Mike Heroux</a>,
<a href="http://www.netlib.org/utk/people/JackDongarra/"> Jack Dongarra</a>,
<a href="http://web.eecs.utk.edu/~luszczek/"> Piotr Luszczek</a></td></tr>
</tr>
</table>
</br>
<?php
示例12: Page
<?php
include 'common/page.php';
$page = new Page();
$page->setPathToWebRoot('');
$page->setPageTitle('HPCG - Research');
$page->setNavIdentifier('about');
?>
<?php
include 'common/header.html';
?>
<div class="breadcrumb"><a href="about.php">About</a> - Research</div>
<p>Research results will be posted here as available.</p>
<?php
include 'common/footer.html';
示例13: Page
<?php
include 'common/page.php';
$page = new Page();
$page->setPathToWebRoot('');
$page->setPageTitle('HPCG - Publications/Presentations');
$page->setNavIdentifier('resources');
?>
<?php
include 'common/header.html';
?>
<div class="breadcrumb"><a href="resources.php">Resources</a> - Publications/Presentations</div>
<ul class="docs">
<li><a href="doc/HPCG-Benchmark.pdf"> Toward a New Metric for Ranking High Performance Computing Systems (.pdf)</a></li>
<li><a href="doc/HPCG-Specification.pdf"> HPCG Technical Specification (.pdf)</a></li>
<li><a href="http://www.netlib.org/utk/people/JackDongarra/SLIDES/sc13-top500-hpcg-FINAL.pdf"> HPCG Overview Talk from SC'13 TOP 500 BOF.(.pdf)</a></li>
<li><a href="http://www.netlib.org/utk/people/JackDongarra/SLIDES/hpcg-isc-0614.pdf"> HPCG: One Year Later, from ISC'14.(.pdf)</a></li>
</ul>
<?php
include 'common/footer.html';
示例14: Page
<?php
include 'common/page.php';
$page = new Page();
$page->setPathToWebRoot('');
$page->setPageTitle('HPCG - Mail Lists');
$page->setNavIdentifier('resources');
$x = <<<END
table.lists th { text-align: left; padding: .5em 2em .5em 0;
border-bottom: 1px solid #999; }
table.lists td { padding: .5em 2em .5em 0; border-bottom: 1px solid #999; }
END;
$page->setInlineStyles($x);
?>
<?php
include 'common/header.html';
?>
<div class="breadcrumb"><a href="resources.php">Resources</a> - Mail Lists</div>
<p>HPCG maintains two main lists that are open to the public. The
hpcg-announce list provides a convenient mechanism for distributing
announcements from the development team to the user community. The hpcg-users
list provides a discussion forum for users.
<!-- Both lists are public lists in
that email traffic on the lists is archived here on the open web.-->
</p>
<table class="lists" cellspacing="0" cellpadding="0">
<tr><th>Announce list:</th>
示例15: Page
<?php
include 'common/page.php';
$page = new Page();
$page->setPathToWebRoot('');
$page->setPageTitle('HPCG - Applications');
$page->setNavIdentifier('about');
$x = <<<END
img.app { float: right; padding: 10px 10px 20px 20px; }
END;
$page->setInlineStyles($x);
?>
<?php
include 'common/header.html';
?>
<div class="breadcrumb"><a href="about.php">About</a> - Applications</div>
<h3>Applications</h3>
<p><b>Current activities:</b>
We have released HPCG Version 2.4 for general availability.
</p><br/><br/>
<?php
include 'common/footer.html';