diff --git a/templates/meta.ron b/templates/meta.ron new file mode 100644 index 0000000..1bc33d1 --- /dev/null +++ b/templates/meta.ron @@ -0,0 +1,34 @@ +( + // og:title + title: "", + // og:description + description: "", + // article:tag + tags: [], + + // og:site_name + site_name: "mysite.tld", + // og:locale + locale: "en_CA", + // og:type + type: "article", + + authors: [ + Author( + name: All( // Enum variant w/ fields + first: "Jane", + last: "Doe", + user: "xXGI_JaneXx", + ), + gender: Female, + ), + ], + + // chrono::NaiveDate with custom deserialize from string. + // Here it will instead autofill with chrono::NaiveDate::default() values. + // + // "%Y-%m-%d" + date: Date(), + + image: None, +) diff --git a/test_tree/default_meta.ron b/test_tree/default_meta.ron index 55e699f..5de3230 100644 --- a/test_tree/default_meta.ron +++ b/test_tree/default_meta.ron @@ -1,21 +1,15 @@ ( - // og:title title: "", - // og:description description: "", - // article:tag tags: [], - // og:site_name site_name: "Cutieguwu.ca", - // og:locale locale: "en_CA", - // og:type type: "article", authors: [ Author( - name: All( // Enum variant w/ fields + name: All( first: "Olivia", last: "Brooks", user: "Cutieguwu", @@ -24,10 +18,6 @@ ), ], - // chrono::NaiveDate with custom deserialize from string. - // Here it will instead autofill with chrono::NaiveDate::default() values. - // - // "%Y-%m-%d" date: Date(), image: None,