This repository has been archived on 2025-08-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Twittia/index.html
2010-04-24 22:12:31 +02:00

21 lines
No EOL
743 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Twittia</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="default.css" type="text/css" />
<script type="text/javascript" src="jQuery.js"></script>
<script type="text/javascript" src="jQuery-Plugins.js"></script>
<script type="text/javascript" src="TwittiaCore.js"></script>
</head>
<body>
<ol id="body" class="messages"></ol>
<script type="text/javascript">
var twittia_instance;
$(document).ready(function() {
twittia_instance = new Twittia();
loadPlugin(controller.pluginURL());
});
</script>
</body>
</html>