Add Ground View screen for server edition, powered by the Windy API https://api.windy.com/
This commit is contained in:
parent
8958ef4d38
commit
598a60c7f5
11 changed files with 349 additions and 1 deletions
|
|
@ -139,6 +139,9 @@
|
|||
<div id="radar-html" class="weather-display">
|
||||
<%- include('partials/radar.ejs') %>
|
||||
</div>
|
||||
<div id="ground-view-html" class="weather-display">
|
||||
<%- include('partials/ground-view.ejs') %>
|
||||
</div>
|
||||
<div id="hazards-html" class="weather-display">
|
||||
<%- include('partials/hazards.ejs') %>
|
||||
</div>
|
||||
|
|
|
|||
8
views/partials/ground-view.ejs
Normal file
8
views/partials/ground-view.ejs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<%- include('header.ejs', {titleDual:{ top: 'Ground' , bottom: 'View' }, hasTime: true}) %>
|
||||
<div class="main has-box ground-view">
|
||||
<div class="ground-view-media hidden">
|
||||
<img class="ground-view-image" src="" alt="" />
|
||||
</div>
|
||||
<div class="ground-view-label hidden"></div>
|
||||
<div class="ground-view-empty hidden"></div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue