예제 #1
0
	</div>
	<!-- /#login-container -->

	<footer id="footer" class="footer navbar-fixed-bottom">
		<ul class="nav pull-left">
			<li>
				For bugs, improvements, proposals and tasks please use the <a
					href="https://github.com/sass-team/sass-app/issues"
					target="_blank">GitHub issue tracker</a>.
			</li>
		</ul>
		<ul class="nav pull-right">
			<li>
				Copyright &copy; <?php 
auto_copyright('2014');
// 2010 - 2011
?>
,
				&#60;devs&#62;<a href="https://github.com/rdok" target="_blank">rdok</a> &#38;
				<a href="http://gr.linkedin.com/pub/georgios-skarlatos/70/461/123" target="_blank">geoif</a>&#60;&#47;devs&#62;

			</li>
		</ul>
	</footer>

	<!--Video Section-->
	<section class="content-section video-section">
		<div class="pattern-overlay">
			<a id="bgndVideo" class="player"
			   data-property="{videoURL:'https://www.youtube.com/watch?v=qW5VeFdeYTU', quality:'large', autoPlay:true, mute:true, opacity:1, optimizeDisplay:true, loop:true, vol:1, realfullscreen:true}">bg</a>
예제 #2
0
    $thisYear = date('Y');
    // get this year as 4-digit value
    if (!is_numeric($startYear)) {
        $year = $thisYear;
        // use this year as default
    } else {
        $year = intval($startYear);
    }
    if ($year == $thisYear || $year > $thisYear) {
        // $year cannot be greater than this year - if it is then echo only current year
        echo "&copy; {$thisYear}";
        // display single year
    } else {
        echo "&copy; {$year}&ndash;{$thisYear}";
        // display range of years
    }
}
?>

<?php 
auto_copyright(2015);
// 2015 - Current
?>
        
      </div>
    </div>
  </div>
</footer>
<script src="/js/jquery-1.11.2.min.js"></script> 
<script src="/js/bootstrap.min.js"></script>
</body>
예제 #3
0
</a>
                </p>

                <p class="menu-social ff-awesome">
                    <?php 
foreach ($social as $links) {
    echo "<a href=\"" . $links['link'] . "\"></a>";
}
?>

                </p>

                <p>Created by <span class="fc-black"><?php 
echo $author['name'];
?>
</span></p>

                <p>CWIKI WEB DEV <span class="ff-reading">&copy; </span>
                    <span class="ff-default"><?php 
auto_copyright('2015');
?>
</span>
                </p>

            </div>
        </div>
        <img class="my-image" src="images/avatar.png">
    </div>
    <!--    contact Body class End-->
</div>
<!--contact Class end-->
예제 #4
0
?>
/img/british_council_logo.png" class="img-responsive britishcouncil-logo" alt="British Council" /></a></li>
					<li><a href="http://www.britten100.org"><img src="<?php 
bloginfo('template_directory');
?>
/img/britten_100_logo.png" class="img-responsive britten100-logo"  alt="Britten 100" /></a></li>
					<li><a href="http://www.brittenpears.org"><img src="<?php 
bloginfo('template_directory');
?>
/img/bpf_logo.png" class="img-responsive brittenpears-logo" alt="Britten-Pears Foundation" /></a></li>
				</ul>
				<ul class="supporter_logos_small visible-xs">
					<li><a href="http://www.mfy.org.uk">Music for Youth</a></li>
					<li><a href="http://www.britishcouncil.org">British Council</a></li>
					<li><a href="http://www.britten100.org">Britten 100</a></li>
					<li><a href="http://www.brittenpears.org">Britten-Pears Foundation</a></li>	
				</ul>
			</div>
		</div>
	
		<div class="row">
			<div class="col-md-12">
				<p class="copyright">&copy; <strong>Britten &amp; Beyond</strong> <?php 
auto_copyright('2013');
?>
</p>
			</div>
		</div>
	</div>
</div>
</div>
예제 #5
0
<!--widget  end editable content area include  / cut here--> 
  </div><!--end widget-inside-->
  </aside>    
     </div><!--end sidebar-->
    </div><!--end midddle wrap-->
     <footer id="footer">
        <ul id="credits">
         <li><a href="http://www.aliaslead.com" target="new"><img id="aliaslead" src="<?php 
echo get_template_directory_uri();
?>
/images/aliaslead-all-red.png"></a></li>
         <li>&copy;&nbsp; <?php 
auto_copyright('2012');
?>
 </li>
        	<!--<li>&copy;&nbsp;2013-2014</li>-->
        </ul>
   <!--footer link styles written not used at this point : )-->
      	<ul>
            <!--<li class="header">Link Header</li>
            <li>links</li>
            <li>links</li>
            <li>links</li>-->
       </ul>
       <ul class="social-media">
        	<li><!--s-m logos-->
       	    </li>
       </ul>
       <ul class="social-media">
        	<li><!--s-m logos-->
       	    </li>
예제 #6
0
function auto_copyright($year = 'auto')
{
    ?>
	<?php 
    if (intval($year) == 'auto') {
        $year = date('Y');
    }
    ?>
	<?php 
    if (intval($year) == date('Y')) {
        echo intval($year);
    }
    ?>
	<?php 
    if (intval($year) < date('Y')) {
        echo intval($year) . '&ndash;' . date('Y');
    }
    ?>
	<?php 
    if (intval($year) > date('Y')) {
        echo date('Y');
    }
}
?>

<footer>
<?php 
auto_copyright('2016');
?>
</footer>