2010-05-03 11:57:24 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Theme_Compat
|
2016-07-06 14:40:29 +02:00
|
|
|
* @deprecated 3.0.0
|
2010-10-19 09:48:22 +02:00
|
|
|
*
|
2016-05-13 20:41:31 +02:00
|
|
|
* This file is here for backward compatibility with old themes and will be removed in a future version
|
2010-05-03 11:57:24 +02:00
|
|
|
*/
|
2015-10-30 11:38:49 +01:00
|
|
|
_deprecated_file(
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Template name. */
|
2015-10-30 11:38:49 +01:00
|
|
|
sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ),
|
2016-07-06 14:40:29 +02:00
|
|
|
'3.0.0',
|
2015-10-30 11:38:49 +01:00
|
|
|
null,
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Template name. */
|
2015-10-30 11:38:49 +01:00
|
|
|
sprintf( __( 'Please include a %s template in your theme.' ), basename( __FILE__ ) )
|
|
|
|
);
|
2010-05-03 11:57:24 +02:00
|
|
|
?>
|
|
|
|
|
|
|
|
<hr />
|
|
|
|
<div id="footer" role="contentinfo">
|
|
|
|
<!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way; it's our only promotion or advertising. -->
|
|
|
|
<p>
|
2016-02-20 15:41:27 +01:00
|
|
|
<?php
|
|
|
|
printf(
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: 1: Blog name, 2: WordPress */
|
2016-02-20 15:41:27 +01:00
|
|
|
__( '%1$s is proudly powered by %2$s' ),
|
2017-12-01 00:11:00 +01:00
|
|
|
get_bloginfo( 'name' ),
|
2016-02-20 15:41:27 +01:00
|
|
|
'<a href="https://wordpress.org/">WordPress</a>'
|
|
|
|
);
|
|
|
|
?>
|
2010-05-03 11:57:24 +02:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-05-14 17:33:08 +02:00
|
|
|
<!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/ -->
|
2010-05-03 11:57:24 +02:00
|
|
|
<?php /* "Just what do you think you're doing Dave?" */ ?>
|
|
|
|
|
|
|
|
<?php wp_footer(); ?>
|
|
|
|
</body>
|
|
|
|
</html>
|