41 lines
1.2 KiB
HTML
41 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Félicie</title>
|
|
<link rel="stylesheet" href="/theme/css/main.css" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<div class='sidebar'>
|
|
<a id='home' href='index.html'> /HOME </a></br>
|
|
<div id='anchors'>
|
|
<a href=article-manon.html>L'article de Manon</a></br>
|
|
<a href=my-super-post-1.html>My super title 1</a></br>
|
|
<a href=my-super-post-2.html>My super title 2</a></br>
|
|
</div>
|
|
</div>
|
|
|
|
<div class='content'>
|
|
<p id='welcome-message'>Welcome aboard ! </p>
|
|
|
|
<iframe id="surrealistic-quote" src='http://www.madsci.org/cgi-bin/lynn/jardin/SCG'></iframe>
|
|
|
|
<script
|
|
src="https://code.jquery.com/jquery-3.4.1.min.js"
|
|
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
|
|
crossorigin="anonymous"></script>
|
|
|
|
<script type='text/javascript'>
|
|
$(document).ready(function(){
|
|
var iframe_title = $('#surrealistic-quote').contents();
|
|
console.log(iframe_title);
|
|
$('#surrealistic-quote').hide();
|
|
$('#welcome-message').after('<p>' + iframe_title + '</p>');
|
|
})
|
|
</script>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |