Update Hugo and theme with modern improvements
- Updated Hugo from v0.115.4 to v0.150.0 (latest) - Updated m10c theme to latest version (8 commits) - Fixed deprecated resources.ToCSS → css.Sass function - Upgraded social icons to use brand-specific Simple Icons - Added RSS feed autodiscovery support - Improved icon consistency across all social platforms 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
		@@ -2,7 +2,8 @@
 | 
			
		||||
  "permissions": {
 | 
			
		||||
    "allow": [
 | 
			
		||||
      "Bash(hugo:*)",
 | 
			
		||||
      "Bash(find:*)"
 | 
			
		||||
      "Bash(find:*)",
 | 
			
		||||
      "Bash(cat:*)"
 | 
			
		||||
    ],
 | 
			
		||||
    "deny": [],
 | 
			
		||||
    "ask": []
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										14
									
								
								config.toml
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								config.toml
									
									
									
									
									
								
							@@ -17,11 +17,11 @@ theme = "m10c"
 | 
			
		||||
    name = "My Cooking Show"
 | 
			
		||||
    url = "https://www.youtube.com/@RandomRecipeProject"
 | 
			
		||||
  [[params.social]]
 | 
			
		||||
    icon = "message-circle"
 | 
			
		||||
    icon = "brand-mastodon"
 | 
			
		||||
    name = "Mastodon"
 | 
			
		||||
    url = "https://toots.kestrelsnest.social/@eric"
 | 
			
		||||
  [[params.social]]
 | 
			
		||||
    icon = "message-circle"
 | 
			
		||||
    icon = "brand-bluesky"
 | 
			
		||||
    name = "BlueSky"
 | 
			
		||||
    url = "https://bsky.app/profile/ewagoner.bsky.social"
 | 
			
		||||
  [[params.social]]
 | 
			
		||||
@@ -37,23 +37,23 @@ theme = "m10c"
 | 
			
		||||
    name = "My Podcasts"
 | 
			
		||||
    url = "https://podcasts.kestrelsnest.social"
 | 
			
		||||
  [[params.social]]
 | 
			
		||||
    icon = "youtube"
 | 
			
		||||
    icon = "brand-youtube"
 | 
			
		||||
    name = "Personal YouTube"
 | 
			
		||||
    url = "https://youtube.com/ewagoner"
 | 
			
		||||
  [[params.social]]
 | 
			
		||||
    icon = "linkedin"
 | 
			
		||||
    icon = "brand-linkedin"
 | 
			
		||||
    name = "LinkedIn"
 | 
			
		||||
    url = "https://www.linkedin.com/in/wagonereric/"
 | 
			
		||||
  [[params.social]]
 | 
			
		||||
    icon = "github"
 | 
			
		||||
    icon = "brand-github"
 | 
			
		||||
    name = "Github"
 | 
			
		||||
    url = "https://github.com/ewagoner"
 | 
			
		||||
  [[params.social]]
 | 
			
		||||
    icon = "git-branch"
 | 
			
		||||
    icon = "brand-gitea"
 | 
			
		||||
    name = "Gitea"
 | 
			
		||||
    url = "https://git.kestrelsnest.social/eric"
 | 
			
		||||
  [[params.social]]
 | 
			
		||||
    icon = "facebook"
 | 
			
		||||
    icon = "brand-facebook"
 | 
			
		||||
    name = "Facebook"
 | 
			
		||||
    url = "https://facebook.com/ewagoner"
 | 
			
		||||
  [[params.social]]
 | 
			
		||||
 
 | 
			
		||||
@@ -8,7 +8,7 @@
 | 
			
		||||
    <meta name="viewport" content="width=device-width, initial-scale=1" />
 | 
			
		||||
    <meta name="author" content="{{ .Site.Params.author | default "John Doe" }}" />
 | 
			
		||||
    <meta name="description" content="{{ if .IsHome }}{{ .Site.Params.description }}{{ else }}{{ .Description }}{{ end }}" />
 | 
			
		||||
    {{ $style := resources.Get "css/main.scss" | resources.ExecuteAsTemplate "css/main.scss" . | resources.ToCSS | resources.Minify | resources.Fingerprint -}}
 | 
			
		||||
    {{ $style := resources.Get "css/main.scss" | resources.ExecuteAsTemplate "css/main.scss" . | css.Sass | resources.Minify | resources.Fingerprint -}}
 | 
			
		||||
    <link rel="stylesheet" href="{{ $style.RelPermalink }}" />
 | 
			
		||||
    {{ range .AlternativeOutputFormats -}}
 | 
			
		||||
      {{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user