mirror of
https://github.com/netbymatt/ws4kp.git
synced 2026-04-18 09:39:30 -07:00
travel cities
This commit is contained in:
@@ -92,6 +92,9 @@
|
||||
<div id="hourly-html" class="weather-display">
|
||||
<%- include('partials/hourly.ejs') %>
|
||||
</div>
|
||||
<div id="travel-html" class="weather-display">
|
||||
<%- include('partials/travel.ejs') %>
|
||||
</div>
|
||||
<div id="current-weather-html" class="weather-display">
|
||||
<%- include('partials/current-weather.ejs') %>
|
||||
</div>
|
||||
|
||||
16
views/partials/travel.ejs
Normal file
16
views/partials/travel.ejs
Normal file
@@ -0,0 +1,16 @@
|
||||
<%- include('header.ejs', {titleDual: {top: 'Travel Forecast', bottom: 'For '} , hasTime: true }) %>
|
||||
<div class="main has-scroll travel">
|
||||
<div class="column-headers">
|
||||
<div class="temp low">LOW</div>
|
||||
<div class="temp high">HIGH</div>
|
||||
</div>
|
||||
<div class="travel-lines">
|
||||
<div class="travel-row template">
|
||||
<div class="city"></div>
|
||||
<div class="icon"><img /></div>
|
||||
<div class="temp low"></div>
|
||||
<div class="temp high"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<%- include('scroll.ejs') %>
|
||||
Reference in New Issue
Block a user