Last active
August 29, 2015 14:01
-
-
Save fabianomaximiano/e3ceda91504ee196aa07 to your computer and use it in GitHub Desktop.
splash.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="de-DE"> | |
<head> | |
<title><?php bloginfo('name'); ?></title> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<meta name="robots" content="noindex,nofollow" /> | |
<link rel="stylesheet" type="text/css" media="all" href="<?php echo get_stylesheet_uri(); ?>" /> | |
<!--link rel="stylesheet" id="login-css" href="<?php //echo get_bloginfo('home').'/wp-admin/css/login.css'; ?>" type="text/css" media="all" /> | |
<link rel="stylesheet" id="colors-fresh-css" href="<?php //echo get_bloginfo('home').'/wp-admin/css/colors-fresh.css'; ?>" type="text/css" media="all" /--> | |
<link rel="stylesheet" id="splash-css" href="<?php echo plugins_url('splash.css', __FILE__); ?>" type="text/css" media="all" /> | |
<script> | |
function voltar() { | |
window.history.forward() | |
} | |
</script> | |
</head> | |
<body> | |
<div id="splash"> | |
<h1>AVISO</h1> | |
<div id="splashcontent"> | |
<img src="<?php bloginfo('template_directory'); ?>/images/splash.png ?>" align="center" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" /> | |
<p>É recomendável que apenas maiores de 18 anos, visualizem o conteúdo deste site. Pessoas com problemas de coração e/ou que não suportam emoções fortes, também não recomenda-se a visualização.</p> | |
<p>A maioria do conteúdo deste site foi retirado da Internet.</p> | |
<p>Caso algum conteúdo seja de sua autoria, favor nos contatar, para que possamos remover ou colocar os devidos direitos autorais.</p> | |
<p>Declaro que li e entendi o texto acima. Assim, desejo:</p> | |
<div id="botoes_sist"> | |
<div class="botao_entrar"> | |
<!-- so tem essa linha --> | |
<a href='<?php bloginfo("home"); ?>' title='Entrar'><?php _e(); ?></a> | |
</div> | |
<div class="botao_sair"> | |
<a href="javascript:voltar();" title="Sair"></a> | |
</div> | |
</div> | |
<!--<p id="enter"><a href="<?php// bloginfo('home'); ?>"></a> <a href="javascript:voltar();">SAIR</a></p>--> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment