-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexplorer.html
More file actions
65 lines (58 loc) · 2.3 KB
/
explorer.html
File metadata and controls
65 lines (58 loc) · 2.3 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
<!-- explorer.html -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Simple Steem Block Explorer</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<!-- Start: Modified Header Section -->
<div class="header-content">
<a href="https://github.com/remlaps/steemExplorer" target="_blank" rel="noopener noreferrer">
<img src="steemExplorerLogo.png" alt="Steem Explorer Logo" height="100" width="100">
</a>
<h1>Simple Steem Block Explorer</h1>
</div>
<!-- End: Modified Header Section -->
<div class="search-form">
<input type="text" id="searchInput" placeholder="Block #, Tx ID, Account, or @author/permlink">
<button id="searchButton">Search</button>
<button id="clearButton" title="Clear search">Clear</button>
</div>
<div class="block-navigation" id="blockNavigation" style="display: none;">
<button id="prevBlock" title="Previous block">← Previous Block</button>
<span id="currentBlockInfo"></span>
<button id="nextBlock" title="Next block">Next Block →</button>
</div>
<div class="info-panels">
<div class="dynamic-info">
<!-- Removed h2 from here, moved inside info-container for better structure -->
<div class="info-container">
<h2>Blockchain Info <span id="refreshTimer">(refreshing in 3s)</span></h2>
<div class="info-section">
<h3>Global Properties <button id="showAllPropsBtn" class="show-all-btn" title="Show all global properties">Show All</button></h3>
<div id="globalProperties" class="json-content"></div>
</div>
<div class="info-section">
<h3>Witness Schedule</h3>
<div id="witnessSchedule" class="json-content"></div>
</div>
</div>
</div>
<div class="search-results">
<h2>Search Results</h2>
<div id="searchResults" class="json-content"></div>
</div>
</div>
<div class="api-selector">
<label for="apiEndpoint">API:</label>
<select id="apiEndpoint"></select>
<button id="addEndpointBtn" title="Add custom endpoint">+</button>
<button id="removeEndpointBtn" title="Remove selected endpoint">−</button>
</div>
</div>
<script src="explorer.js"></script>
</body>
</html>