diff --git a/lib/scraper.js b/lib/scraper.js index fbca08b..2e9fbed 100755 --- a/lib/scraper.js +++ b/lib/scraper.js @@ -14,22 +14,22 @@ class HTTPResponseError extends Error { } } -const base_url = 'https://www.nasa.gov'; +const baseUrl = 'https://www.nasa.gov'; -const search_params = new URLSearchParams({ +const searchParams = new URLSearchParams({ from: 0, size: 5, sort: 'promo-date-time:desc', q: '((ubernode-type:feature OR ubernode-type:image) AND (routes:1446))' }); -const search_url = `${base_url}/api/2/ubernode/_search?${search_params}`; +const searchUrl = `${baseUrl}/api/2/ubernode/_search?${searchParams}`; (async () => { console.log('🐶 Fetching and parsing data from NASA Search API...'); const { hits: { hits: [...results] } } = await (async () => { - const response = await fetch(search_url); + const response = await fetch(searchUrl); if (response.ok) { return await response.json(); @@ -56,13 +56,13 @@ const search_url = `${base_url}/api/2/ubernode/_search?${search_params}`; return; } - const canonical_url = new URL(result.uri, base_url); - const image_url = new URL(image.uri.replace('public:/', '/sites/default/files'), base_url); - const image_alt = image.alt; + const canonicalUrl = new URL(result.uri, baseUrl); + const imageUrl = new URL(image.uri.replace('public:/', '/sites/default/files'), baseUrl); + const imageAlt = image.alt; const content = new TurndownService().turndown(result.body.toString()); - const data = new Buffer.from(`---json\n${JSON.stringify({ date, title, canonical_url, image_url, image_alt, author }, null, 2)}\n---\n\n${content}\n`); + const data = Buffer.from(`---json\n${JSON.stringify({ date, title, canonicalUrl, imageUrl, imageAlt, author }, null, 2)}\n---\n\n${content}\n`); console.log(`💾 Saving new post to ${outputFilePath}!`); fs.writeFileSync(outputFilePath, data); diff --git a/src/_includes/post.liquid b/src/_includes/post.liquid index dbd5486..556770e 100644 --- a/src/_includes/post.liquid +++ b/src/_includes/post.liquid @@ -1,7 +1,7 @@
- {{ data.image_alt }} + {{ data.imageAlt }}
{{ content }}
@@ -10,6 +10,6 @@
diff --git a/src/_posts/2023-05-01-486712.md b/src/_posts/2023-05-01-486712.md index 4fd1faa..a75c59a 100644 --- a/src/_posts/2023-05-01-486712.md +++ b/src/_posts/2023-05-01-486712.md @@ -2,9 +2,9 @@ { "date": "2023-05-01T10:50:00-04:00", "title": "Astronaut Kjell Lindgren", - "canonical_url": "https://www.nasa.gov/faces-of-nasa/kjell-lindgren", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/iss044e021798.jpeg", - "image_alt": "View of NASA astronaut Kjell Lindgren floating in front of the Cupola window.", + "canonicalUrl": "https://www.nasa.gov/faces-of-nasa/kjell-lindgren", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/iss044e021798.jpeg", + "imageAlt": "View of NASA astronaut Kjell Lindgren floating in front of the Cupola window.", "author": "Thalia Patrinos" } --- diff --git a/src/_posts/2023-05-02-486988.md b/src/_posts/2023-05-02-486988.md index 378930e..96a358c 100644 --- a/src/_posts/2023-05-02-486988.md +++ b/src/_posts/2023-05-02-486988.md @@ -2,9 +2,9 @@ { "date": "2023-05-02T12:12:00-04:00", "title": "Neutron Stars Collide", - "canonical_url": "https://www.nasa.gov/image-feature/neutron-stars-collide", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/grb211211apt.jpg", - "image_alt": "Two blue neutrons stars orbit each other in this illustration. They're embedded in a disk of gas that starts off purple and then shades to gold and red as it moves outward. Jets of material emerge from just above and below the disk. .", + "canonicalUrl": "https://www.nasa.gov/image-feature/neutron-stars-collide", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/grb211211apt.jpg", + "imageAlt": "Two blue neutrons stars orbit each other in this illustration. They're embedded in a disk of gas that starts off purple and then shades to gold and red as it moves outward. Jets of material emerge from just above and below the disk. .", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-05-03-486888.md b/src/_posts/2023-05-03-486888.md index eaf48e1..c63112a 100644 --- a/src/_posts/2023-05-03-486888.md +++ b/src/_posts/2023-05-03-486888.md @@ -2,9 +2,9 @@ { "date": "2023-05-03T07:00:00-04:00", "title": "Hubble Captures Extraordinarily Bright Interacting Galaxies ", - "canonical_url": "https://www.nasa.gov/image-feature/goddard/2023/hubble-captures-extraordinarily-bright-interacting-galaxies", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/hubble_eso505-30_pi_2mstr_flat_final.jpg", - "image_alt": "Two blue-white, comma-shaped galaxies: at upper-right and lower-left of center. Streams of diffuse gas stretch between them. Areas of reddish-brown dust dot galaxy at left, less so on galaxy at right. Black background dotted with stars, distant galaxies.", + "canonicalUrl": "https://www.nasa.gov/image-feature/goddard/2023/hubble-captures-extraordinarily-bright-interacting-galaxies", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/hubble_eso505-30_pi_2mstr_flat_final.jpg", + "imageAlt": "Two blue-white, comma-shaped galaxies: at upper-right and lower-left of center. Streams of diffuse gas stretch between them. Areas of reddish-brown dust dot galaxy at left, less so on galaxy at right. Black background dotted with stars, distant galaxies.", "author": "Andrea Gianopoulos" } --- diff --git a/src/_posts/2023-05-04-487021.md b/src/_posts/2023-05-04-487021.md index 356a0d1..1320466 100644 --- a/src/_posts/2023-05-04-487021.md +++ b/src/_posts/2023-05-04-487021.md @@ -2,9 +2,9 @@ { "date": "2023-05-04T11:49:00-04:00", "title": "Exploring the Cosmos Together", - "canonical_url": "https://www.nasa.gov/image-feature/exploring-the-cosmos-together", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/52868012178_9b4c2bd472_o.jpg", - "image_alt": "Officials for the Czech Republic and NASA are seen following the signing of the Artemis Accords by the Czech Republic, Wednesday, May 3, 2023.", + "canonicalUrl": "https://www.nasa.gov/image-feature/exploring-the-cosmos-together", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/52868012178_9b4c2bd472_o.jpg", + "imageAlt": "Officials for the Czech Republic and NASA are seen following the signing of the Artemis Accords by the Czech Republic, Wednesday, May 3, 2023.", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-05-05-486996.md b/src/_posts/2023-05-05-486996.md index da9536b..8773059 100644 --- a/src/_posts/2023-05-05-486996.md +++ b/src/_posts/2023-05-05-486996.md @@ -2,9 +2,9 @@ { "date": "2023-05-05T07:50:00-04:00", "title": "Eyes on Ice", - "canonical_url": "https://www.nasa.gov/aeroresearch/eyes-on-ice", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/eyes-on-ice.png", - "image_alt": "Curtis Flack (left) and Paul von Hardenberg inspecting the ice that formed on the proprotor model.", + "canonicalUrl": "https://www.nasa.gov/aeroresearch/eyes-on-ice", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/eyes-on-ice.png", + "imageAlt": "Curtis Flack (left) and Paul von Hardenberg inspecting the ice that formed on the proprotor model.", "author": "Lillian Gipson" } --- diff --git a/src/_posts/2023-05-08-487087.md b/src/_posts/2023-05-08-487087.md index b3b2c21..521d7cf 100644 --- a/src/_posts/2023-05-08-487087.md +++ b/src/_posts/2023-05-08-487087.md @@ -2,9 +2,9 @@ { "date": "2023-05-08T12:18:00-04:00", "title": "Plumes from Popocatépetl Volcano", - "canonical_url": "https://www.nasa.gov/image-feature/plumes-from-popocat-petl-volcano", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/popocatepetll_oli_20231104_lrg.jpg", - "image_alt": "Popocatépetl erupts in this image acquired by Landsat 8 on April 14, 2023.", + "canonicalUrl": "https://www.nasa.gov/image-feature/plumes-from-popocat-petl-volcano", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/popocatepetll_oli_20231104_lrg.jpg", + "imageAlt": "Popocatépetl erupts in this image acquired by Landsat 8 on April 14, 2023.", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-05-08-487091.md b/src/_posts/2023-05-08-487091.md index 4ccadd8..396ed88 100644 --- a/src/_posts/2023-05-08-487091.md +++ b/src/_posts/2023-05-08-487091.md @@ -2,9 +2,9 @@ { "date": "2023-05-08T19:33:00-04:00", "title": "Spacewalkers Stephen Bowen and Sultan Alneyadi Exit the Quest Airlock", - "canonical_url": "https://www.nasa.gov/image-feature/spacewalkers-stephen-bowen-and-sultan-alneyadi-exit-the-quest-airlock", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/iss069e008015.jpg", - "image_alt": "Spacewalkers Stephen Bowen and Sultan Alneyadi exit the Quest airlock", + "canonicalUrl": "https://www.nasa.gov/image-feature/spacewalkers-stephen-bowen-and-sultan-alneyadi-exit-the-quest-airlock", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/iss069e008015.jpg", + "imageAlt": "Spacewalkers Stephen Bowen and Sultan Alneyadi exit the Quest airlock", "author": "Mark Garcia" } --- diff --git a/src/_posts/2023-05-10-487120.md b/src/_posts/2023-05-10-487120.md index 6b2c356..c0be85d 100644 --- a/src/_posts/2023-05-10-487120.md +++ b/src/_posts/2023-05-10-487120.md @@ -2,9 +2,9 @@ { "date": "2023-05-10T12:25:00-04:00", "title": "Vance Oyama, Searching for Life in Our Solar System", - "canonical_url": "https://www.nasa.gov/image-feature/vance-oyama-searching-for-life-in-our-solar-system", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/arc-1965-a-34401orig.jpg", - "image_alt": "Vance I. Oyama at the Gas Chromatograph in Ames' life detection laboratory, Vance and his brother Jiro both pioneered new areas of life sciences research at Ames.", + "canonicalUrl": "https://www.nasa.gov/image-feature/vance-oyama-searching-for-life-in-our-solar-system", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/arc-1965-a-34401orig.jpg", + "imageAlt": "Vance I. Oyama at the Gas Chromatograph in Ames' life detection laboratory, Vance and his brother Jiro both pioneered new areas of life sciences research at Ames.", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-05-11-487138.md b/src/_posts/2023-05-11-487138.md index b14906a..25f3c4d 100644 --- a/src/_posts/2023-05-11-487138.md +++ b/src/_posts/2023-05-11-487138.md @@ -2,9 +2,9 @@ { "date": "2023-05-11T12:05:00-04:00", "title": "Stabilizing Shorelines with Mangroves", - "canonical_url": "https://www.nasa.gov/image-feature/stabilizing-shorelines-with-mangroves", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/ksc-20230412-ph-geb01_0130orig.jpg", - "image_alt": "A team member from Kennedy’s Environmental Management Branch works to remove a mangrove seedling on the shoreline of Kennedy Athletic, Recreation, and Social (KARS) Park at Kennedy Space Center in Florida on April 12, 2023.", + "canonicalUrl": "https://www.nasa.gov/image-feature/stabilizing-shorelines-with-mangroves", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/ksc-20230412-ph-geb01_0130orig.jpg", + "imageAlt": "A team member from Kennedy’s Environmental Management Branch works to remove a mangrove seedling on the shoreline of Kennedy Athletic, Recreation, and Social (KARS) Park at Kennedy Space Center in Florida on April 12, 2023.", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-05-12-487170.md b/src/_posts/2023-05-12-487170.md index 34599d4..f7be5b1 100644 --- a/src/_posts/2023-05-12-487170.md +++ b/src/_posts/2023-05-12-487170.md @@ -2,9 +2,9 @@ { "date": "2023-05-12T11:48:00-04:00", "title": "50th Anniversary of the Skylab 1 Launch", - "canonical_url": "https://www.nasa.gov/image-feature/50th-anniversary-of-the-skylab-1-launch", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/s73-26913orig.jpg", - "image_alt": "This week in 1973, the uncrewed Skylab was launched aboard a modified Saturn V launch vehicle from NASA’s Kennedy Space Center. ", + "canonicalUrl": "https://www.nasa.gov/image-feature/50th-anniversary-of-the-skylab-1-launch", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/s73-26913orig.jpg", + "imageAlt": "This week in 1973, the uncrewed Skylab was launched aboard a modified Saturn V launch vehicle from NASA’s Kennedy Space Center. ", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-05-15-487197.md b/src/_posts/2023-05-15-487197.md index 5de3d25..b2f4028 100644 --- a/src/_posts/2023-05-15-487197.md +++ b/src/_posts/2023-05-15-487197.md @@ -2,9 +2,9 @@ { "date": "2023-05-15T12:21:00-04:00", "title": "Hearing and Seeing the Music of the Spheres", - "canonical_url": "https://www.nasa.gov/image-feature/hearing-and-seeing-the-music-of-the-spheres", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/52892444353_ae84d54281_o.jpg", - "image_alt": "An image of Jupiter is projected large on a screen above an orchestra on a darkened theater stage. The musicians are barely visible, with a soft light on the conductor. Blue lights illuminate the back of the stage.", + "canonicalUrl": "https://www.nasa.gov/image-feature/hearing-and-seeing-the-music-of-the-spheres", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/52892444353_ae84d54281_o.jpg", + "imageAlt": "An image of Jupiter is projected large on a screen above an orchestra on a darkened theater stage. The musicians are barely visible, with a soft light on the conductor. Blue lights illuminate the back of the stage.", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-05-16-487217.md b/src/_posts/2023-05-16-487217.md index 12e68d7..a0a18b9 100644 --- a/src/_posts/2023-05-16-487217.md +++ b/src/_posts/2023-05-16-487217.md @@ -2,9 +2,9 @@ { "date": "2023-05-16T11:33:00-04:00", "title": "Moon Over the Southern Atlantic", - "canonical_url": "https://www.nasa.gov/image-feature/moon-over-the-southern-atlantic", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/iss069e008558orig.jpg", - "image_alt": "The waxing gibbous Moon is pictured from the International Space Station as it orbited 268 miles above the southern Atlantic Ocean. The Moon is nearly full and it glows brightly against the darkness of space.", + "canonicalUrl": "https://www.nasa.gov/image-feature/moon-over-the-southern-atlantic", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/iss069e008558orig.jpg", + "imageAlt": "The waxing gibbous Moon is pictured from the International Space Station as it orbited 268 miles above the southern Atlantic Ocean. The Moon is nearly full and it glows brightly against the darkness of space.", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-05-17-487242.md b/src/_posts/2023-05-17-487242.md index 3ad2dd4..54bca60 100644 --- a/src/_posts/2023-05-17-487242.md +++ b/src/_posts/2023-05-17-487242.md @@ -2,9 +2,9 @@ { "date": "2023-05-17T13:12:00-04:00", "title": "Laguna San Rafael National Park Viewed from the Space Station", - "canonical_url": "https://www.nasa.gov/image-feature/laguna-san-rafael-national-park-viewed-from-the-space-station", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/52892230003_1f3d0ebf6d_k.jpeg", - "image_alt": "Laguna San Rafael National Park, photographed on May 9, 2023 as the space station orbited 268 miles above Chile.", + "canonicalUrl": "https://www.nasa.gov/image-feature/laguna-san-rafael-national-park-viewed-from-the-space-station", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/52892230003_1f3d0ebf6d_k.jpeg", + "imageAlt": "Laguna San Rafael National Park, photographed on May 9, 2023 as the space station orbited 268 miles above Chile.", "author": "Dacia Massengill" } --- diff --git a/src/_posts/2023-05-18-487252.md b/src/_posts/2023-05-18-487252.md index 144efa4..a587947 100644 --- a/src/_posts/2023-05-18-487252.md +++ b/src/_posts/2023-05-18-487252.md @@ -2,9 +2,9 @@ { "date": "2023-05-18T11:39:00-04:00", "title": "U.S. Senate Members Meet the Crew of Artemis II ", - "canonical_url": "https://www.nasa.gov/image-feature/us-senate-members-meet-the-crew-of-artemis-ii", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/52905606104_de61d2a117_k.jpeg", - "image_alt": "Group photo with CSA astronaut Hansen, left, Sen. Moran, NASA Astronaut Koch, CSA President Campbell, NASA astronauts Wiseman, and VGlover, Sen. JShaheen, and NASA Administrator Nelson", + "canonicalUrl": "https://www.nasa.gov/image-feature/us-senate-members-meet-the-crew-of-artemis-ii", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/52905606104_de61d2a117_k.jpeg", + "imageAlt": "Group photo with CSA astronaut Hansen, left, Sen. Moran, NASA Astronaut Koch, CSA President Campbell, NASA astronauts Wiseman, and VGlover, Sen. JShaheen, and NASA Administrator Nelson", "author": "Dacia Massengill" } --- diff --git a/src/_posts/2023-05-19-487237.md b/src/_posts/2023-05-19-487237.md index 1767fce..d384c89 100644 --- a/src/_posts/2023-05-19-487237.md +++ b/src/_posts/2023-05-19-487237.md @@ -2,9 +2,9 @@ { "date": "2023-05-19T07:00:00-04:00", "title": "Hubble Peers into a Glistening Star Cluster", - "canonical_url": "https://www.nasa.gov/image-feature/goddard/2023/hubble-peers-into-a-glistening-star-cluster", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/hubble_ngc6325_potw2320a_0.jpg", - "image_alt": "Dense cluster of bright stars. Its core is to the left and has a distinct group of blue stars. Surrounding the core are stars in warmer colors. They are numerous near the core, becoming more sparse, small, and distant toward the sides of the image.", + "canonicalUrl": "https://www.nasa.gov/image-feature/goddard/2023/hubble-peers-into-a-glistening-star-cluster", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/hubble_ngc6325_potw2320a_0.jpg", + "imageAlt": "Dense cluster of bright stars. Its core is to the left and has a distinct group of blue stars. Surrounding the core are stars in warmer colors. They are numerous near the core, becoming more sparse, small, and distant toward the sides of the image.", "author": "Andrea Gianopoulos" } --- diff --git a/src/_posts/2023-05-22-476593.md b/src/_posts/2023-05-22-476593.md index 0d96c27..8cd60b5 100644 --- a/src/_posts/2023-05-22-476593.md +++ b/src/_posts/2023-05-22-476593.md @@ -2,9 +2,9 @@ { "date": "2023-05-22T09:29:00-04:00", "title": "Baby Stars in the Orion Constellation ", - "canonical_url": "https://www.nasa.gov/image-feature/baby-stars-in-the-orion-constellation", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/pia19836-ngc2174.jpg", - "image_alt": "Scores of baby stars shrouded by dust are revealed in this infrared image of the star-forming region NGC 2174", + "canonicalUrl": "https://www.nasa.gov/image-feature/baby-stars-in-the-orion-constellation", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/pia19836-ngc2174.jpg", + "imageAlt": "Scores of baby stars shrouded by dust are revealed in this infrared image of the star-forming region NGC 2174", "author": "Yvette Smith" } --- diff --git a/src/_posts/2023-05-23-487323.md b/src/_posts/2023-05-23-487323.md index 7a63bde..8e900fb 100644 --- a/src/_posts/2023-05-23-487323.md +++ b/src/_posts/2023-05-23-487323.md @@ -2,9 +2,9 @@ { "date": "2023-05-23T14:18:00-04:00", "title": "SpaceX Dragon Crew Ship Approaches the Space Station", - "canonical_url": "https://www.nasa.gov/image-feature/spacex-dragon-crew-ship-approaches-the-international-space-station", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/52920038606_816bedf573_k.jpeg", - "image_alt": "The SpaceX Dragon crew ship, with four astronauts aboard, is seen in orbit ", + "canonicalUrl": "https://www.nasa.gov/image-feature/spacex-dragon-crew-ship-approaches-the-international-space-station", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/52920038606_816bedf573_k.jpeg", + "imageAlt": "The SpaceX Dragon crew ship, with four astronauts aboard, is seen in orbit ", "author": "Dacia Massengill" } --- diff --git a/src/_posts/2023-05-24-487336.md b/src/_posts/2023-05-24-487336.md index 3a293e3..1f5ffb3 100644 --- a/src/_posts/2023-05-24-487336.md +++ b/src/_posts/2023-05-24-487336.md @@ -2,9 +2,9 @@ { "date": "2023-05-24T12:08:00-04:00", "title": "Whistling Through the Wildflowers", - "canonical_url": "https://www.nasa.gov/image-feature/whistling-through-the-wildflowers", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/ksc-20230519-ph-fwm01-0167orig.jpg", - "image_alt": "Two black-bellied whistling ducks walk through a field of wildflowers at NASA’s John F. Kennedy Space Center in Florida on May 19, 2023.", + "canonicalUrl": "https://www.nasa.gov/image-feature/whistling-through-the-wildflowers", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/ksc-20230519-ph-fwm01-0167orig.jpg", + "imageAlt": "Two black-bellied whistling ducks walk through a field of wildflowers at NASA’s John F. Kennedy Space Center in Florida on May 19, 2023.", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-05-24-487337.md b/src/_posts/2023-05-24-487337.md index 2cda98e..5b60122 100644 --- a/src/_posts/2023-05-24-487337.md +++ b/src/_posts/2023-05-24-487337.md @@ -2,9 +2,9 @@ { "date": "2023-05-24T13:20:00-04:00", "title": "Strategic Partnerships Manager Anita Dey", - "canonical_url": "https://www.nasa.gov/faces-of-nasa/anita-dey", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/nhq202304260001.jpg", - "image_alt": "An Indian woman with short, curly, salt and pepper hair smiles softly at the camera wearing a sunshine yellow quarter sleeve blouse. Her hands are clasped as she leans agains a railing outside, with bright green bushes on her right-hand side. ", + "canonicalUrl": "https://www.nasa.gov/faces-of-nasa/anita-dey", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/nhq202304260001.jpg", + "imageAlt": "An Indian woman with short, curly, salt and pepper hair smiles softly at the camera wearing a sunshine yellow quarter sleeve blouse. Her hands are clasped as she leans agains a railing outside, with bright green bushes on her right-hand side. ", "author": "Tahira Allen" } --- diff --git a/src/_posts/2023-05-26-487364.md b/src/_posts/2023-05-26-487364.md index 9423f30..1da0548 100644 --- a/src/_posts/2023-05-26-487364.md +++ b/src/_posts/2023-05-26-487364.md @@ -2,9 +2,9 @@ { "date": "2023-05-26T07:00:00-04:00", "title": "Hubble Captures a Drifting Galaxy", - "canonical_url": "https://www.nasa.gov/image-feature/goddard/2023/hubble-captures-a-drifting-galaxy", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/hubble_jw39_potw2321a.jpg", - "image_alt": "Large spiral galaxy at center. Its core surrounded by concentric rings of dark and light dust. Its spiral arms hold grey dust and blue areas of star formation. Part of the arm is drawn out above the galaxy. Dust from the arm trails off to the right.", + "canonicalUrl": "https://www.nasa.gov/image-feature/goddard/2023/hubble-captures-a-drifting-galaxy", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/hubble_jw39_potw2321a.jpg", + "imageAlt": "Large spiral galaxy at center. Its core surrounded by concentric rings of dark and light dust. Its spiral arms hold grey dust and blue areas of star formation. Part of the arm is drawn out above the galaxy. Dust from the arm trails off to the right.", "author": "Andrea Gianopoulos" } --- diff --git a/src/_posts/2023-05-30-487288.md b/src/_posts/2023-05-30-487288.md index 60933cf..2d397fd 100644 --- a/src/_posts/2023-05-30-487288.md +++ b/src/_posts/2023-05-30-487288.md @@ -2,9 +2,9 @@ { "date": "2023-05-30T13:16:00-04:00", "title": "VIPER Team Mimics Moon's Surface", - "canonical_url": "https://www.nasa.gov/image-feature/viper-team-mimics-moons-surface", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/grc-2022-c-04467.jpg", - "image_alt": "An engineer maps out the position of simulation lunar soil and rocks during testing of NASA's VIPER Moon rover at the agency's Glenn Research Center in Cleveland. ", + "canonicalUrl": "https://www.nasa.gov/image-feature/viper-team-mimics-moons-surface", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/grc-2022-c-04467.jpg", + "imageAlt": "An engineer maps out the position of simulation lunar soil and rocks during testing of NASA's VIPER Moon rover at the agency's Glenn Research Center in Cleveland. ", "author": "Rachel Hoover" } --- diff --git a/src/_posts/2023-05-30-487414.md b/src/_posts/2023-05-30-487414.md index 23e02da..034e498 100644 --- a/src/_posts/2023-05-30-487414.md +++ b/src/_posts/2023-05-30-487414.md @@ -2,9 +2,9 @@ { "date": "2023-05-30T11:39:00-04:00", "title": "TROPICS Prepped to Track Storms", - "canonical_url": "https://www.nasa.gov/image-feature/tropics-prepped-to-track-storms", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/ksc-20230526-ph-rkl01_0003orig.jpg", - "image_alt": "A Rocket Lab Electron rocket stands on Pad B, Launch Complex 1, in Māhia, New Zealand, just ahead of liftoff at 3:46 p.m. NZST Friday, May 26, with NASA’s TROPICS CubeSats secured in the payload fairing atop the rocket.", + "canonicalUrl": "https://www.nasa.gov/image-feature/tropics-prepped-to-track-storms", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/ksc-20230526-ph-rkl01_0003orig.jpg", + "imageAlt": "A Rocket Lab Electron rocket stands on Pad B, Launch Complex 1, in Māhia, New Zealand, just ahead of liftoff at 3:46 p.m. NZST Friday, May 26, with NASA’s TROPICS CubeSats secured in the payload fairing atop the rocket.", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-05-31-487431.md b/src/_posts/2023-05-31-487431.md index fa5f86a..439a4ac 100644 --- a/src/_posts/2023-05-31-487431.md +++ b/src/_posts/2023-05-31-487431.md @@ -2,9 +2,9 @@ { "date": "2023-05-31T12:49:00-04:00", "title": "Computer Programmer and Mathematician Josephine Jue", - "canonical_url": "https://www.nasa.gov/image-feature/computer-programmer-and-mathematician-josephine-jue", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/s69-28578_0.jpg", - "image_alt": "Portrait of Josephine Jue smiling as she poses with one of NASA Johnson Space Center's mainframe computers.", + "canonicalUrl": "https://www.nasa.gov/image-feature/computer-programmer-and-mathematician-josephine-jue", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/s69-28578_0.jpg", + "imageAlt": "Portrait of Josephine Jue smiling as she poses with one of NASA Johnson Space Center's mainframe computers.", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-06-01-487457.md b/src/_posts/2023-06-01-487457.md index a5433d6..3b5e0ad 100644 --- a/src/_posts/2023-06-01-487457.md +++ b/src/_posts/2023-06-01-487457.md @@ -2,9 +2,9 @@ { "date": "2023-06-01T14:01:00-04:00", "title": "NASA TV Executive Producer Rebecca Sirmons", - "canonical_url": "https://www.nasa.gov/faces-of-nasa/rebecca-sirmons", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/nhq202305300001.jpg", - "image_alt": "A woman with dark, long brown, wavy hair looks into the distance with a soft smile on her face. She's wearing a black blazer and the collar of her white button down shirt sticks out the top. A tree and greenery is blurred in the background. ", + "canonicalUrl": "https://www.nasa.gov/faces-of-nasa/rebecca-sirmons", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/nhq202305300001.jpg", + "imageAlt": "A woman with dark, long brown, wavy hair looks into the distance with a soft smile on her face. She's wearing a black blazer and the collar of her white button down shirt sticks out the top. A tree and greenery is blurred in the background. ", "author": "Tahira Allen" } --- diff --git a/src/_posts/2023-06-02-487475.md b/src/_posts/2023-06-02-487475.md index c04c3a2..be885c2 100644 --- a/src/_posts/2023-06-02-487475.md +++ b/src/_posts/2023-06-02-487475.md @@ -2,9 +2,9 @@ { "date": "2023-06-02T11:17:00-04:00", "title": "U.S. Poet Laureate Ada Limón Unveils Poem for Europa Clipper", - "canonical_url": "https://www.nasa.gov/image-feature/us-poet-laureate-ada-limo-n-unveils-poem-for-europa-clipper", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/52944606582_c478c5c2ab_o.jpg", - "image_alt": "U.S. Poet Laureate Ada Limón reads her poem for the Europa Clipper mission during an event with NASA, Thursday, June 1, 2023, in the Coolidge Auditorium at the Library of Congress in Washington.", + "canonicalUrl": "https://www.nasa.gov/image-feature/us-poet-laureate-ada-limo-n-unveils-poem-for-europa-clipper", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/52944606582_c478c5c2ab_o.jpg", + "imageAlt": "U.S. Poet Laureate Ada Limón reads her poem for the Europa Clipper mission during an event with NASA, Thursday, June 1, 2023, in the Coolidge Auditorium at the Library of Congress in Washington.", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-06-06-487522.md b/src/_posts/2023-06-06-487522.md index e3fe576..1fd4065 100644 --- a/src/_posts/2023-06-06-487522.md +++ b/src/_posts/2023-06-06-487522.md @@ -2,9 +2,9 @@ { "date": "2023-06-06T12:05:00-04:00", "title": "A Bloom in Space", - "canonical_url": "https://www.nasa.gov/image-feature/a-bloom-in-space", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/iss046e017198orig.jpg", - "image_alt": "Close-up view of Zinnia grown as part of VEG-01 experiment in the Columbus module aboard the International Space Station (ISS).", + "canonicalUrl": "https://www.nasa.gov/image-feature/a-bloom-in-space", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/iss046e017198orig.jpg", + "imageAlt": "Close-up view of Zinnia grown as part of VEG-01 experiment in the Columbus module aboard the International Space Station (ISS).", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-06-07-487535.md b/src/_posts/2023-06-07-487535.md index a52d9c2..3a77524 100644 --- a/src/_posts/2023-06-07-487535.md +++ b/src/_posts/2023-06-07-487535.md @@ -2,9 +2,9 @@ { "date": "2023-06-07T11:23:00-04:00", "title": "Crew-5 Visits NASA Headquarters", - "canonical_url": "https://www.nasa.gov/image-feature/crew-5-visits-nasa-headquarters", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/nhq202306050017orig.jpg", - "image_alt": "Crew-5 astronauts Josh Cassada, left, and Nicole Mann of NASA, second from left, and JAXA astronaut Koichi Wakata, right, pose for a picture with NASA Associate Administrator Bob Cabana, second from right, on June 5, 2023.", + "canonicalUrl": "https://www.nasa.gov/image-feature/crew-5-visits-nasa-headquarters", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/nhq202306050017orig.jpg", + "imageAlt": "Crew-5 astronauts Josh Cassada, left, and Nicole Mann of NASA, second from left, and JAXA astronaut Koichi Wakata, right, pose for a picture with NASA Associate Administrator Bob Cabana, second from right, on June 5, 2023.", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-06-08-487560.md b/src/_posts/2023-06-08-487560.md index 1b42633..9fc66db 100644 --- a/src/_posts/2023-06-08-487560.md +++ b/src/_posts/2023-06-08-487560.md @@ -2,9 +2,9 @@ { "date": "2023-06-08T12:26:00-04:00", "title": "A Cloudy Approach", - "canonical_url": "https://www.nasa.gov/image-feature/a-cloudy-approach", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/iss069e018147orig.jpg", - "image_alt": "The SpaceX Dragon cargo craft approaches the International Space Station for an automated docking less than a day after launching from NASA's Kennedy Space Center in Florida.", + "canonicalUrl": "https://www.nasa.gov/image-feature/a-cloudy-approach", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/iss069e018147orig.jpg", + "imageAlt": "The SpaceX Dragon cargo craft approaches the International Space Station for an automated docking less than a day after launching from NASA's Kennedy Space Center in Florida.", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-06-09-487510.md b/src/_posts/2023-06-09-487510.md index 364c2e2..9db1977 100644 --- a/src/_posts/2023-06-09-487510.md +++ b/src/_posts/2023-06-09-487510.md @@ -2,9 +2,9 @@ { "date": "2023-06-09T09:31:00-04:00", "title": "Systems Engineering Supervisor Amy Lendian", - "canonical_url": "https://www.nasa.gov/faces-of-nasa/amy-lendian", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/amylendian_ksc-20230530-ph-kls01_0018.jpg", - "image_alt": "Systems Engineering Supervisor Amy Lendian smiles at the camera in a white collared shirt and a black blazer. She is wearing an Artemis pin on her lapel. The background is out of focus. ", + "canonicalUrl": "https://www.nasa.gov/faces-of-nasa/amy-lendian", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/amylendian_ksc-20230530-ph-kls01_0018.jpg", + "imageAlt": "Systems Engineering Supervisor Amy Lendian smiles at the camera in a white collared shirt and a black blazer. She is wearing an Artemis pin on her lapel. The background is out of focus. ", "author": "Thalia Patrinos" } --- diff --git a/src/_posts/2023-06-09-487573.md b/src/_posts/2023-06-09-487573.md index 62f08bf..c0436e8 100644 --- a/src/_posts/2023-06-09-487573.md +++ b/src/_posts/2023-06-09-487573.md @@ -2,9 +2,9 @@ { "date": "2023-06-09T07:00:00-04:00", "title": "Hubble Observes a Cosmic Sea Creature", - "canonical_url": "https://www.nasa.gov/image-feature/goddard/2023/hubble-observes-a-cosmic-sea-creature", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/hubble_j0206_potw2323a.jpg", - "image_alt": "Spiral galaxy tilted partially toward us. Bright and colorful inner disk with bluish and reddish star formation throughout the arms. An outer disk of dust has many arms being pulled, down and to the right. They stretch into faint trails.", + "canonicalUrl": "https://www.nasa.gov/image-feature/goddard/2023/hubble-observes-a-cosmic-sea-creature", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/hubble_j0206_potw2323a.jpg", + "imageAlt": "Spiral galaxy tilted partially toward us. Bright and colorful inner disk with bluish and reddish star formation throughout the arms. An outer disk of dust has many arms being pulled, down and to the right. They stretch into faint trails.", "author": "Andrea Gianopoulos" } --- diff --git a/src/_posts/2023-06-12-487604.md b/src/_posts/2023-06-12-487604.md index 220dee9..0c1e774 100644 --- a/src/_posts/2023-06-12-487604.md +++ b/src/_posts/2023-06-12-487604.md @@ -2,9 +2,9 @@ { "date": "2023-06-12T15:23:00-04:00", "title": "Spacewalker Woody Hoburg Rides the Canadarm2 Robotic Arm", - "canonical_url": "https://www.nasa.gov/image-feature/spacewalker-woody-hoburg-rides-the-canadarm2-robotic-arm", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/iss069e018537.jpg", - "image_alt": "Spacewalker Woody Hoburg rides the Canadarm2 robotic arm", + "canonicalUrl": "https://www.nasa.gov/image-feature/spacewalker-woody-hoburg-rides-the-canadarm2-robotic-arm", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/iss069e018537.jpg", + "imageAlt": "Spacewalker Woody Hoburg rides the Canadarm2 robotic arm", "author": "Mark Garcia" } --- diff --git a/src/_posts/2023-06-14-487620.md b/src/_posts/2023-06-14-487620.md index 7829369..1ef727e 100644 --- a/src/_posts/2023-06-14-487620.md +++ b/src/_posts/2023-06-14-487620.md @@ -2,9 +2,9 @@ { "date": "2023-06-14T12:07:00-04:00", "title": "A Dragon Beams Up", - "canonical_url": "https://www.nasa.gov/image-feature/a-dragon-beams-up", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/ksc-20230605-ph-fmx01_0206orig.jpg", - "image_alt": "SpaceX's Cargo Dragon launches from Launch Complex 39A at the agency's Kennedy Space Center in Florida in its 28th commercial resupply mission.", + "canonicalUrl": "https://www.nasa.gov/image-feature/a-dragon-beams-up", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/ksc-20230605-ph-fmx01_0206orig.jpg", + "imageAlt": "SpaceX's Cargo Dragon launches from Launch Complex 39A at the agency's Kennedy Space Center in Florida in its 28th commercial resupply mission.", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-06-15-487651.md b/src/_posts/2023-06-15-487651.md index 05ffcc8..a00b7e2 100644 --- a/src/_posts/2023-06-15-487651.md +++ b/src/_posts/2023-06-15-487651.md @@ -2,9 +2,9 @@ { "date": "2023-06-15T11:58:00-04:00", "title": "Artemis II Module Makes a Move", - "canonical_url": "https://www.nasa.gov/image-feature/artemis-ii-module-makes-a-move", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/52940993135_2c9e07b650_o.jpg", - "image_alt": "The service module for the Artemis II Orion spacecraft was moved into the Final Assembly and System Testing (FAST) Cell inside the Operations and Checkout Building at NASA's Kennedy Space Center in Florida.", + "canonicalUrl": "https://www.nasa.gov/image-feature/artemis-ii-module-makes-a-move", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/52940993135_2c9e07b650_o.jpg", + "imageAlt": "The service module for the Artemis II Orion spacecraft was moved into the Final Assembly and System Testing (FAST) Cell inside the Operations and Checkout Building at NASA's Kennedy Space Center in Florida.", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-06-16-487683.md b/src/_posts/2023-06-16-487683.md index c8b913f..3cc0a82 100644 --- a/src/_posts/2023-06-16-487683.md +++ b/src/_posts/2023-06-16-487683.md @@ -2,9 +2,9 @@ { "date": "2023-06-16T11:17:00-04:00", "title": "A View of Galveston, the Birthplace of Juneteenth", - "canonical_url": "https://www.nasa.gov/image-feature/a-view-of-galveston-the-birthplace-of-juneteenth", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/iss067-e-190647.jpg", - "image_alt": "This image of Galveston was taken by the Expedition 67 crew aboard the International Space Station as it orbited 224 miles above.", + "canonicalUrl": "https://www.nasa.gov/image-feature/a-view-of-galveston-the-birthplace-of-juneteenth", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/iss067-e-190647.jpg", + "imageAlt": "This image of Galveston was taken by the Expedition 67 crew aboard the International Space Station as it orbited 224 miles above.", "author": "Gary Daines" } --- diff --git a/src/_posts/2023-06-20-487710.md b/src/_posts/2023-06-20-487710.md index b9aed5c..475cbea 100644 --- a/src/_posts/2023-06-20-487710.md +++ b/src/_posts/2023-06-20-487710.md @@ -2,9 +2,9 @@ { "date": "2023-06-20T13:36:00-04:00", "title": "It's Rock Science", - "canonical_url": "https://www.nasa.gov/image-feature/its-rock-science", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/52938180835_ef496d02b7_o.jpg", - "image_alt": "Members of the Artemis II crew receive a lesson on lunar fundamentals in the Apollo Lunar Lab at NASA's Johnson Space Center in Houston, Texas on May 9, 2023.", + "canonicalUrl": "https://www.nasa.gov/image-feature/its-rock-science", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/52938180835_ef496d02b7_o.jpg", + "imageAlt": "Members of the Artemis II crew receive a lesson on lunar fundamentals in the Apollo Lunar Lab at NASA's Johnson Space Center in Houston, Texas on May 9, 2023.", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-06-21-487720.md b/src/_posts/2023-06-21-487720.md index 0959a17..f50afcc 100644 --- a/src/_posts/2023-06-21-487720.md +++ b/src/_posts/2023-06-21-487720.md @@ -2,9 +2,9 @@ { "date": "2023-06-21T11:39:00-04:00", "title": "The Glowing North Sea", - "canonical_url": "https://www.nasa.gov/image-feature/the-glowing-north-sea", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/northseabloom_oli2_2023165_lrg.jpg", - "image_alt": "Swirling tendrils of phytoplankton—possibly Noctiluca scintillans—give a yellow glow to the shallow waters of the North Sea in this Jun 14, 2023, image from Landsat 9.", + "canonicalUrl": "https://www.nasa.gov/image-feature/the-glowing-north-sea", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/northseabloom_oli2_2023165_lrg.jpg", + "imageAlt": "Swirling tendrils of phytoplankton—possibly Noctiluca scintillans—give a yellow glow to the shallow waters of the North Sea in this Jun 14, 2023, image from Landsat 9.", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-06-22-487752.md b/src/_posts/2023-06-22-487752.md index 4c54323..2c546ed 100644 --- a/src/_posts/2023-06-22-487752.md +++ b/src/_posts/2023-06-22-487752.md @@ -2,9 +2,9 @@ { "date": "2023-06-22T12:03:00-04:00", "title": "One Last Look from Skylab 2", - "canonical_url": "https://www.nasa.gov/image-feature/one-last-look-from-skylab-2", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/sl2-07-651_orig_1_0.jpg", - "image_alt": "This week in 1973, the first crewed Skylab mission launched aboard a Saturn IB from NASA’s Kennedy Space Center. ", + "canonicalUrl": "https://www.nasa.gov/image-feature/one-last-look-from-skylab-2", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/sl2-07-651_orig_1_0.jpg", + "imageAlt": "This week in 1973, the first crewed Skylab mission launched aboard a Saturn IB from NASA’s Kennedy Space Center. ", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-06-23-487751.md b/src/_posts/2023-06-23-487751.md index ef1daba..48a460e 100644 --- a/src/_posts/2023-06-23-487751.md +++ b/src/_posts/2023-06-23-487751.md @@ -2,9 +2,9 @@ { "date": "2023-06-23T07:00:00-04:00", "title": "Hubble Glimpses a Glistening Cluster", - "canonical_url": "https://www.nasa.gov/image-feature/goddard/2023/hubble-glimpses-a-glistening-cluster", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/hubble_ngc6544_potw2325a.jpg", - "image_alt": "The view is filled with small stars, on a dark background. Stars become much denser and brighter around a core just right of center. Most of the stars are small, but some are larger with a round, brightly colored glow and four sharp diffraction spikes.", + "canonicalUrl": "https://www.nasa.gov/image-feature/goddard/2023/hubble-glimpses-a-glistening-cluster", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/hubble_ngc6544_potw2325a.jpg", + "imageAlt": "The view is filled with small stars, on a dark background. Stars become much denser and brighter around a core just right of center. Most of the stars are small, but some are larger with a round, brightly colored glow and four sharp diffraction spikes.", "author": "Andrea Gianopoulos" } --- diff --git a/src/_posts/2023-06-26-487796.md b/src/_posts/2023-06-26-487796.md index 5169029..bb8d161 100644 --- a/src/_posts/2023-06-26-487796.md +++ b/src/_posts/2023-06-26-487796.md @@ -2,9 +2,9 @@ { "date": "2023-06-26T12:05:00-04:00", "title": "Exploring Climate Data in a New Way", - "canonical_url": "https://www.nasa.gov/image-feature/exploring-climate-data-in-a-new-way", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/52996510071_c5abce524b_o.jpg", - "image_alt": "Local students participate in an Earth Information Center (EIC) student engagement event, Friday, June 23, 2023, at the Mary W. Jackson NASA Headquarters building in Washington.", + "canonicalUrl": "https://www.nasa.gov/image-feature/exploring-climate-data-in-a-new-way", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/52996510071_c5abce524b_o.jpg", + "imageAlt": "Local students participate in an Earth Information Center (EIC) student engagement event, Friday, June 23, 2023, at the Mary W. Jackson NASA Headquarters building in Washington.", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-06-27-487808.md b/src/_posts/2023-06-27-487808.md index 792894f..d869091 100644 --- a/src/_posts/2023-06-27-487808.md +++ b/src/_posts/2023-06-27-487808.md @@ -2,9 +2,9 @@ { "date": "2023-06-27T11:26:00-04:00", "title": "Sunning at Kennedy", - "canonical_url": "https://www.nasa.gov/image-feature/sunning-at-kennedy", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/52862884106_250dbfd475_o.jpg", - "image_alt": "A young alligator rests on a concrete structure at NASA’s Kennedy Space Center in Florida on April 25, 2023.", + "canonicalUrl": "https://www.nasa.gov/image-feature/sunning-at-kennedy", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/52862884106_250dbfd475_o.jpg", + "imageAlt": "A young alligator rests on a concrete structure at NASA’s Kennedy Space Center in Florida on April 25, 2023.", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-06-27-487812.md b/src/_posts/2023-06-27-487812.md index a2d4e8f..a02b63d 100644 --- a/src/_posts/2023-06-27-487812.md +++ b/src/_posts/2023-06-27-487812.md @@ -2,9 +2,9 @@ { "date": "2023-06-27T15:28:00-04:00", "title": "Rising to the Challenge: NASA TechRise Student Teams Take Flight", - "canonical_url": "https://www.nasa.gov/feature/rising-to-the-challenge-nasa-techrise-student-teams-take-flight", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/top_image_0.jpg", - "image_alt": "Balloon in flight carrying gondola against the backdrop of a clear sky with scattered clouds and the sunrise. Green fields below. ", + "canonicalUrl": "https://www.nasa.gov/feature/rising-to-the-challenge-nasa-techrise-student-teams-take-flight", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/top_image_0.jpg", + "imageAlt": "Balloon in flight carrying gondola against the backdrop of a clear sky with scattered clouds and the sunrise. Green fields below. ", "author": "Ryan Henderson" } --- diff --git a/src/_posts/2023-06-29-487841.md b/src/_posts/2023-06-29-487841.md index 803ae97..4d2be3c 100644 --- a/src/_posts/2023-06-29-487841.md +++ b/src/_posts/2023-06-29-487841.md @@ -2,9 +2,9 @@ { "date": "2023-06-29T10:03:00-04:00", "title": "Artemis II Heat Shield Installed", - "canonical_url": "https://www.nasa.gov/image-feature/artemis-ii-heat-shield-installed", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/ksc-20230622-ph-csh01_0012orig.jpg", - "image_alt": "Teams install the heat shield on the Artemis II Orion spacecraft inside the high bay of the Neil Armstrong Operations and Checkout Building at NASA’s Kennedy Space Center in Florida on June 22, 2023.", + "canonicalUrl": "https://www.nasa.gov/image-feature/artemis-ii-heat-shield-installed", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/ksc-20230622-ph-csh01_0012orig.jpg", + "imageAlt": "Teams install the heat shield on the Artemis II Orion spacecraft inside the high bay of the Neil Armstrong Operations and Checkout Building at NASA’s Kennedy Space Center in Florida on June 22, 2023.", "author": "Monika Luabeya" } --- diff --git a/src/_posts/2023-06-30-487844.md b/src/_posts/2023-06-30-487844.md index a354bfc..c9a6345 100644 --- a/src/_posts/2023-06-30-487844.md +++ b/src/_posts/2023-06-30-487844.md @@ -2,9 +2,9 @@ { "date": "2023-06-30T07:00:00-04:00", "title": "Hubble Checks in on a Galactic Neighbor", - "canonical_url": "https://www.nasa.gov/image-feature/goddard/2023/hubble-checks-in-on-a-galactic-neighbor", - "image_url": "https://www.nasa.gov/sites/default/files/thumbnails/image/hubble_eso174-1_potw2326a.jpg", - "image_alt": "A large, bright, diffuse galaxy. Center is brighter and bluer, fading to a pale, faint, gray halo. An arm on one side that curls around the top. Threads of dark dust cross the center. Many stars shine around the galaxy, on a black background.", + "canonicalUrl": "https://www.nasa.gov/image-feature/goddard/2023/hubble-checks-in-on-a-galactic-neighbor", + "imageUrl": "https://www.nasa.gov/sites/default/files/thumbnails/image/hubble_eso174-1_potw2326a.jpg", + "imageAlt": "A large, bright, diffuse galaxy. Center is brighter and bluer, fading to a pale, faint, gray halo. An arm on one side that curls around the top. Threads of dark dust cross the center. Many stars shine around the galaxy, on a black background.", "author": "Andrea Gianopoulos" } --- diff --git a/src/feed.atom.liquid b/src/feed.atom.liquid index 316689c..f4489a0 100644 --- a/src/feed.atom.liquid +++ b/src/feed.atom.liquid @@ -19,7 +19,7 @@ permalink: "/feed.atom" {{ app.description }} {%- for post in collections.post | head(30) %} - {{ post.data.canonical_url }} + {{ post.data.canonicalUrl }} {{ post.data.title | markdown: "inline" }} {{ post.date | date }} @@ -28,7 +28,7 @@ permalink: "/feed.atom" - + {%- endfor %} diff --git a/src/feed.json.11ty.js b/src/feed.json.11ty.js index 923bd95..d129c4c 100644 --- a/src/feed.json.11ty.js +++ b/src/feed.json.11ty.js @@ -14,11 +14,11 @@ module.exports = class { .slice(0, 30) .map(async post => { return { - id: post.data.canonical_url, - url: post.data.canonical_url, + id: post.data.canonicalUrl, + url: post.data.canonicalUrl, title: this.markdown(post.data.title, 'inline'), content_html: await this.renderFile('./src/_includes/post.liquid', post), - image: post.data.image_url, + image: post.data.imageUrl, date_published: post.date, authors: [ {