32 lines
815 B
HTML
32 lines
815 B
HTML
<!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/>
|
|
<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>
|
|
</body>
|
|
</html>
|