Beispiel #1
0
<H2>Blog</H2>

<P>Stay tuned on the most recent posts, not only regarding REMBRANDT, but also regarding the named entity recognition task. <a href="<?php 
echo $feedrss[$lang];
?>
">Subscribe the REMBRANDT RSS feed</a> for the latest updates.</P>

<HR>
<?php 
echo printNews($lang);
?>


<div id="wrap">
    <?php 
printHeader($siteRootPath);
?>
    <div class="left rounded">     
        <div class="head-container">
            <h2><a href="#">Welcome To Horrie International!</a></h2>
            <div class="row-container">
                <div class="horrie-head index-row rounded"><img class="rounded" src="img/horrie.gif"/><br><img src="img/fire.gif"/></div>
                <div class="index-row rounded"><img class="rounded" src="img/mission.gif" /></div>
                <div class="horrie-head index-row rounded flip"><img class="rounded" src="img/horrie.gif"/><br><img src="img/fire.gif"/></div>
            </div>
        </div>  
        <div class="box rounded center-text"><h2>Breaking News!</h2></div>
        <?php 
printNews($siteRootPath);
?>
    </div>
    
    <div id="right-bar" class="right rounded"> 
        <div id="search-link" class="rounded"><h1>Search</h1></div>
        <h2>Categories :</h2>
        <?php 
printCategories();
?>
        <h2>Archives :</h2>
        <ul>
        <?php 
printNewsArchives();
?>
    </div>
Beispiel #3
0
<H2>Notícias</H2>

<P>Fique a par das notícias mais recentes, não só relativamente ao REMBRANDT, mas também sobre a área de reconhecimento de entidades mencionadas em geral. <a href="<?php 
echo $feedrss[$lang];
?>
">Subscreva o canal RSS do REMBRANDT</a> para ter as novidades em primeira mão!</P>

<HR>
<?php 
printNews($lang);
function getNews()
{
    if (isset($_GET['newsUri'])) {
        $sCode = printNews(getNewsByField('NewsUri', $_GET['newsUri']));
    } elseif (isset($_GET['ID'])) {
        $sCode = printNews(getNewsByField('ID', $_GET['ID']));
    }
    return $sCode;
}