-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (99 loc) · 3.38 KB
/
index.html
File metadata and controls
106 lines (99 loc) · 3.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Прототипы сервисов</title>
<!-- DataTables CSS -->
<link rel="stylesheet" href="https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css">
<style>
body {
font-family: sans-serif;
background: #f4f4f4;
margin: 0;
padding: 2em;
}
h1 {
text-align: center;
margin-bottom: 1em;
}
.container {
max-width: 900px;
margin: auto;
background: white;
padding: 1em;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
caption {
caption-side: bottom;
text-align: center;
padding-top: 0.5em;
font-size: 0.9em;
color: #777;
}
a {
color: #007acc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Прототипы сервисов</h1>
<table id="projects-table" class="display">
<thead>
<tr>
<th>Проект</th>
<th>Описание</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="/efrsb-avito-analyzer/">efrsb-avito-analyzer</a></td>
<td>Анализ лотов ЕФРСБ и цен Avito</td>
</tr>
<tr>
<td><a href="/videoparse/">Пасер соцсетей</a></td>
<td>Бот по парсингу данных из соц сетей (insta, tik tok, youtube)</td>
</tr>
<tr>
<td><a href="/OzonDashboard/">OZON отчеты</a></td>
<td>Отчеты вида: PNL, ДДС, PNL</td>
</tr>
<tr>
<td><a href="/WBUploader/">Вилберис - загрузка по артикулу</a></td>
<td>Автоматическая загрузка товаров на Вилберис</td>
</tr>
<tr>
<td><a href="/AspenHysys/">Аналог Aspen Hysys</a></td>
<td>Моделирует, рассчитывает, оптимизирует и визуализирует промышленные технологические процессы.</td>
</tr>
<tr>
<td><a href="/mob_VantUI_eureka/">Доска объявлений мобильное приложение</a></td>
<td>Dashboard: Адаптивный мобильный интерфейс (Vant UI PRO)</td>
</tr>
<tr>
<td><a href="/mob_VantUI_eureka_MAX_CTO/">Бот в МАКС для СТО</a></td>
<td>Для Макс или ТГ бот под сто (Vant UI PRO)</td>
</tr>
</tbody>
<caption>Все прототипы доступны по подкаталогам.</caption>
</table>
</div>
<!-- jQuery + DataTables -->
<script src="https://code.jquery.com/jquery-3.7.0.min.js"></script>
<script src="https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js"></script>
<script>
$(document).ready(function() {
$('#projects-table').DataTable({
language: {
url: "//cdn.datatables.net/plug-ins/1.13.6/i18n/ru.json"
}
});
});
</script>
</body>
</html>