Rust library to generate static websites
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(website): Smaller images

+2 -2
+2 -2
website/src/layout.rs
··· 20 20 fn default() -> Self { 21 21 Self { 22 22 title: "Maudit".to_string(), 23 - description: Some("A modern static site generator built with Rust".to_string()), 23 + description: Some("A Rust library to build static websites.".to_string()), 24 24 canonical_url: None, 25 25 } 26 26 } ··· 61 61 } 62 62 63 63 // Twitter Card meta tags 64 - meta name="twitter:card" content="summary_large_image"; 64 + meta name="twitter:card" content="summary"; 65 65 meta name="twitter:title" content=(formatted_title); 66 66 meta name="twitter:description" content=(description); 67 67 meta name="twitter:image" content=(social_image_url);