Federation-widget/minimal.html

33 lines
815 B
HTML
Raw Normal View History

2018-05-13 16:28:58 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Federation Widget</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<script type="text/javascript">
var type = 'user'; // could be 'group' to follow a group
var user = 'fdroidorg';
var max = 5;
var tag = 'federation-widget';
var domain = 'https://mastodon.technology';
var servertype = 'mastodon'
</script>
</head>
<body>
<h1> Federation Widget</h1>
<div id="federation-widget">
<p>Timeline activity...</p>
</div>
<script type="text/javascript" src="./federation-widget.js">
</script>
<hr/>
2018-05-13 16:53:17 +02:00
<p>Get the sources of the Federation widget at <a href="http://github.com/lubuwest/federation-widget" title="Find Federation widget sources on Github">Federation widget on Github</a></p>
2018-05-13 16:28:58 +02:00
</body>
</html>