statoolinfosweb/src/fr/devinsy/statoolinfos/htmlize/socialNetworks.xhtml

84 lines
3.9 KiB
HTML
Raw Normal View History

2020-10-11 06:57:21 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>StatoolInfos</title>
<meta charset="UTF-8" />
<meta name="keywords" content="statoolinfos,devinsy,federation" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="statoolinfos.css" />
<script src="sorttable.js" />
<script src="Chart.bundle.min.js"></script>
</head>
<body>
2020-11-16 19:12:13 +01:00
<div class="center_table" style="width: 1100px;">
2020-10-11 06:57:21 +02:00
<div style="margin: 5px;">
<a id="" href="socialNetworks.xhtml" class="button">Tous</a>
2020-10-18 04:52:22 +02:00
<a id="" href="socialNetworks-diaspora.xhtml" class="button">Diaspora*</a>
2020-10-11 06:57:21 +02:00
<a id="" href="socialNetworks-mastodon.xhtml" class="button">Mastodon</a>
</div>
<div class="center">
<h2 id="title">n/a</h2>
<div>Nombre de membres : <span id="organizationCount">n/a</span></div>
</div>
<div class="center_table" style="width: 700px;">
<div class="legend right" style="float: right; margin-top: -75px;">
2020-10-16 03:50:53 +02:00
<div class="left row">
<div class="column">
<img src="diaspora-logo.png" title="Diaspora"/>Diaspora*<br/>
<img src="funkwhale-logo.png" title="Funkwhale"/>Funkwhale<br/>
<img src="mastodon-logo.png" title="Mastodon"/>Mastodon<br/>
</div>
<div class="column">
<img src="mobilizon-logo.png" title="Mobilizon"/>Mobilizon<br/>
<img src="peertube-logo.png" title="Peertube"/>Peertube<br/>
<img src="pixelfed-logo.png" title="Pixelfed"/>Pixelfed<br/>
</div>
2020-10-11 06:57:21 +02:00
</div>
</div>
<table id="organizations" class="table_classic left">
<thead>
<tr>
<th style="width: 200px;">Nom du membre</th>
<th style="">URL</th>
2020-10-16 03:50:53 +02:00
<th style="width: 10px;" colspan="6">Réseaux sociaux</th>
2020-10-11 06:57:21 +02:00
</tr>
</thead>
<tbody>
<tr id="organizationListLine">
<td id="organizationListLineName" style="padding-top: 0; padding-bottom: 0;">
<a href="#" id="organizationListLineNameLink">
<img id="organizationListLineLogo" src="" style="width: 26px; height: 26px; padding-top:0; padding-bottom: 0; vertical-align: middle;"/>
&#160;<span id="organizationListLineNameValue">n/a</span>
</a>
</td>
<td id="organizationListLineUrl"><a href="#" id="organizationListLineUrlLink">n/a</a></td>
<td id="" class="td_center center"><a id="organizationListLineDiasporaLink" href="#"><img id="organizationListLineDiasporaImg" src="diaspora-logo.png" class="disabled" title="Diaspora*" style="width: 25px;"/></a></td>
2020-10-16 03:50:53 +02:00
<td id="" class="td_center center"><a id="organizationListLineFunkwhaleLink" href="#"><img id="organizationListLineFunkwhaleImg" src="funkwhale-logo.png" class="disabled" title="Funkwhale" style="width: 25px;"/></a></td>
2020-10-11 06:57:21 +02:00
<td id="" class="td_center center"><a id="organizationListLineMastodonLink" href="#"><img id="organizationListLineMastodonImg" src="mastodon-logo.png" class="disabled" title="Mastodon" style="width: 25px;"/></a></td>
2020-10-16 03:50:53 +02:00
<td id="" class="td_center center"><a id="organizationListLineMobilizonLink" href="#"><img id="organizationListLineMobilizonImg" src="mobilizon-logo.png" class="disabled" title="Mobilizon" style="width: 25px;"/></a></td>
<td id="" class="td_center center"><a id="organizationListLinePeertubeLink" href="#"><img id="organizationListLinePeertubeImg" src="peertube-logo.png" class="disabled" title="Peertube" style="width: 25px;"/></a></td>
<td id="" class="td_center center"><a id="organizationListLinePixelfedLink" href="#"><img id="organizationListLinePixelfedImg" src="pixelfed-logo.png" class="disabled" title="Pixelfed" style="width: 25px;"/></a></td>
2020-10-11 06:57:21 +02:00
</tr>
</tbody>
</table>
</div>
</div>
<script type="text/javascript">
$(document).ready( function ()
2020-10-11 06:57:21 +02:00
{
$('#organizations').DataTable(
{
paging: false,
ordering: true,
"order": [[ 0, "asc" ]],
language: dataTableFrench
});
2020-10-11 06:57:21 +02:00
});
</script>
</body>
</html>