mirror of
https://github.com/jbowdre/runtimeterror.git
synced 2024-11-21 14:32:19 +00:00
fix typo in partly cloudy icon name
This commit is contained in:
parent
d234bd13a8
commit
bb2c884613
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: "Displaying Data from a Tempest Weather Station on a Static Site"
|
title: "Displaying Data from a Tempest Weather Station on a Static Site"
|
||||||
date: "2024-02-11T20:48:49Z"
|
date: "2024-02-11T20:48:49Z"
|
||||||
# lastmod: 2024-02-10
|
lastmod: "2024-02-23T22:00:22Z"
|
||||||
description: "Using a GitHub Actions workflow to retrieve data from an authenticated API, posting results to a publicly-accessible pastebin, and displaying them on a static web site."
|
description: "Using a GitHub Actions workflow to retrieve data from an authenticated API, posting results to a publicly-accessible pastebin, and displaying them on a static web site."
|
||||||
featured: false
|
featured: false
|
||||||
thumbnail: "finished-product.png"
|
thumbnail: "finished-product.png"
|
||||||
|
@ -674,8 +674,8 @@ const CLASS_MAP_WX = {
|
||||||
'clear-night': 'fa-solid fa-moon',
|
'clear-night': 'fa-solid fa-moon',
|
||||||
'cloudy': 'fa-solid fa-cloud',
|
'cloudy': 'fa-solid fa-cloud',
|
||||||
'foggy': 'fa-solid fa-cloud-showers-smog',
|
'foggy': 'fa-solid fa-cloud-showers-smog',
|
||||||
'partly-cloudy-day': 'fa-solid fa-clouds-sun',
|
'partly-cloudy-day': 'fa-solid fa-cloud-sun',
|
||||||
'partly-cloudy-night': 'fa-solid fa-clouds-moon',
|
'partly-cloudy-night': 'fa-solid fa-cloud-moon',
|
||||||
'possibly-rainy-day': 'fa-solid fa-cloud-sun-rain',
|
'possibly-rainy-day': 'fa-solid fa-cloud-sun-rain',
|
||||||
'possibly-rainy-night': 'fa-solid fa-cloud-moon-rain',
|
'possibly-rainy-night': 'fa-solid fa-cloud-moon-rain',
|
||||||
'possibly-sleet-day': 'fa-solid fa-cloud-meatball',
|
'possibly-sleet-day': 'fa-solid fa-cloud-meatball',
|
||||||
|
|
Loading…
Reference in a new issue