Files
3proxy-eagle/src/html/index.html
T
2022-11-18 20:38:36 +03:00

122 lines
5.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{PAGE_TITLE}}</title>
<link rel="stylesheet" href="/main.css">{{CUSTOM_CSS}}
</head>
<body>
<main class="main container">
<div class="proxyService">
<h1 class="proxyService__title">
{{PAGE_TITLE}}
</h1>
<section class="proxyService__lastDestinations lastDestinations section">
<div class="lastDestinations__title section__title">
Last destinations
</div>
<ul class="lastDestinations__list">
{{LAST_DESTINATIONS_LIST}}
</ul>
</section>
<section class="proxyService__handledTraffic handledTraffic section">
<div class="handledTraffic__mainTitle section__title">
Traffic
</div>
<div class="handledTraffic__blocks">
<div class="handledTraffic__block handledTraffic__block_upload">
<div class="handledTraffic__title">
Daily upload
</div>
<div class="handledTraffic__amount">
<div class="handledTraffic__icon">
<svg class="handledTraffic__svg" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 219.3 493.4" style="enable-background:new 0 0 219.3 493.4;" xml:space="preserve">
<g>
<g>
<path d="M218.4,122.5c-1.5,3.6-4.3,5.4-8.3,5.4h-64v356.3c0,2.7-0.9,4.9-2.6,6.6c-1.7,1.7-3.9,2.6-6.6,2.6H82.2
c-2.7,0-4.9-0.9-6.6-2.6c-1.7-1.7-2.6-3.9-2.6-6.6V127.9h-64c-3.8,0-6.6-1.8-8.3-5.4c-1.5-3.6-1-6.9,1.4-10L103.7,2.9
c1.9-1.9,4.2-2.9,6.9-2.9c2.5,0,4.7,0.9,6.6,2.9L217,112.5C219.5,115.5,220,118.9,218.4,122.5z"/>
</g>
</g>
</svg>
</div>
<div class="handledTraffic__number">
{{DAILY_UPLOAD}}
</div>
<div class="handledTraffic__measure">
{{DAILY_UPLOAD_MEASURE}}
</div>
</div>
<div class="handledTraffic__total">
<div class="handledTraffic__totalTitle">
Total
</div>
<div class="handledTraffic__totalAmount">
{{TOTAL_UPLOAD}}
</div>
</div>
</div>
<div class="handledTraffic__block handledTraffic__block_download">
<div class="handledTraffic__title">
Daily download
</div>
<div class="handledTraffic__amount">
<div class="handledTraffic__icon">
<svg class="handledTraffic__svg" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 219.3 493.4" style="enable-background:new 0 0 219.3 493.4;" xml:space="preserve">
<g>
<path d="M218.4,370.9c-1.5-3.6-4.3-5.4-8.3-5.4h-64V9.1c0-2.7-0.9-4.9-2.6-6.6c-1.7-1.7-3.9-2.6-6.6-2.6H82.2
c-2.7,0-4.9,0.9-6.6,2.6c-1.7,1.7-2.6,3.9-2.6,6.6v356.3h-64c-3.8,0-6.6,1.8-8.3,5.4c-1.5,3.6-1,6.9,1.4,10l101.4,109.6
c1.9,1.9,4.2,2.9,6.9,2.9c2.5,0,4.7-0.9,6.6-2.9L217,380.9C219.5,377.8,220,374.5,218.4,370.9z"/>
</g>
</svg>
</div>
<div class="handledTraffic__number">
{{DAILY_DOWNLOAD}}
</div>
<div class="handledTraffic__measure">
{{DAILY_DOWNLOAD_MEASURE}}
</div>
</div>
<div class="handledTraffic__total">
<div class="handledTraffic__totalTitle">
Total
</div>
<div class="handledTraffic__totalAmount">
{{TOTAL_DOWNLOAD}}
</div>
</div>
</div>
</div>
</section>
<section class="proxyService__topDestinations topDestinations section">
<div class="section__title">
Top destinations
</div>
<div class="topDestinations__block">
<div class="topDestinations__title">
Daily
</div>
<ul class="topDestinations__list topDestinations__list_daily">
{{DAILY_TOP_DESTINATIONS_LIST}}
</ul>
</div>
<div class="topDestinations__block">
<div class="topDestinations__title">
Total
</div>
<ul class="topDestinations__list topDestinations__list_total">
{{TOTAL_TOP_DESTINATIONS_LIST}}
</ul>
</div>
</section>{{BLOCKED_DESTINATIONS}}{{INFORMATION}}
</div>
</main>
<div class="proxyService__copyright copyright">
{{COPYRIGHT}} | FE by Trotsky | <a href="https://notabug.org/acetone/3proxy-eagle" target="_blank">source code</a>
</div>
</body>
</html>