Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ezrizhu committed Jul 2, 2024
1 parent ff6c8ed commit abb4515
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/site/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ pub fn base(title: &str, description: &str, extra_headers: Markup, content: Mark
meta property="og:title" content=(title);
meta property="og:description" content=(description);
meta property="og:theme-color" content="#19191e";
meta property="og:site_name" content="Ezri's Blog";
meta property="og:site_name" content="ezri";

link rel="stylesheet" href="/assets/css/main.css";
(extra_headers)
Expand Down
2 changes: 1 addition & 1 deletion src/site/post.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ fn post(post: Post, state: SiteState, page_type: PageType) -> Markup {
h1 class="p-name" { (post.title) };
div class="byline" {
p {
"by " a class="p-author h-card" href="https://ezrizhu.com" target="_blank" { "Ezri" }
"by " a class="p-author h-card" href="https://ezrizhu.com" target="_blank" { "ezri" }
@if matches!(page_type, PageType::Blog) {
@let date_str = post.date.format("%B %d, %Y").to_string();
@let date_rfc3339 = post.date.to_rfc3339();
Expand Down

0 comments on commit abb4515

Please sign in to comment.