{"id":31456729,"url":"https://github.com/cdvel/modern-vibes","last_synced_at":"2026-05-26T23:04:18.774Z","repository":{"id":308854073,"uuid":"1034324001","full_name":"cdvel/modern-vibes","owner":"cdvel","description":"A clean, sleek, and modern Ghost theme designed for personal sites and blogs.","archived":false,"fork":false,"pushed_at":"2025-08-08T08:06:34.000Z","size":308,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"trunk","last_synced_at":"2025-08-08T10:08:01.476Z","etag":null,"topics":["ghost-theme","vibe-coding"],"latest_commit_sha":null,"homepage":"","language":"Handlebars","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cdvel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-08T07:56:01.000Z","updated_at":"2025-08-08T08:05:57.000Z","dependencies_parsed_at":"2025-08-08T19:45:38.118Z","dependency_job_id":null,"html_url":"https://github.com/cdvel/modern-vibes","commit_stats":null,"previous_names":["cdvel/modern-vibes"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/cdvel/modern-vibes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdvel%2Fmodern-vibes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdvel%2Fmodern-vibes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdvel%2Fmodern-vibes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdvel%2Fmodern-vibes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cdvel","download_url":"https://codeload.github.com/cdvel/modern-vibes/tar.gz/refs/heads/trunk","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdvel%2Fmodern-vibes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277837787,"owners_count":25885967,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-01T02:00:09.286Z","response_time":88,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ghost-theme","vibe-coding"],"created_at":"2025-10-01T11:50:29.959Z","updated_at":"2025-10-01T11:50:31.783Z","avatar_url":"https://github.com/cdvel.png","language":"Handlebars","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Modern Personal Theme\n\nA clean, sleek, and modern Ghost theme designed for personal sites and blogs.\n\n## Features\n\n- **Clean, Modern Design**: Minimalist aesthetic with focus on readability\n- **Typography**: Uses Alata for headings and Inter for body text\n- **Responsive Layout**: Fully responsive design that works on all devices\n- **Grid/List Toggle**: Switch between grid and list view for blog posts\n- **Lazy Loading**: Loads 9 posts initially with \"Load More\" functionality\n- **Native Ghost Features**: Integrated subscribe forms and membership support\n- **SEO Optimized**: Proper meta tags and structured data\n- **Social Integration**: Social media links and sharing\n- **Contact Form**: Built-in contact form for the contact page\n- **\"Now\" Page Support**: Special styling for \"now\" pages\n\n## Installation\n\n1. Download the theme files\n2. Zip the theme folder\n3. Upload to your Ghost admin panel under Design \u003e Upload a theme\n4. Activate the theme\n\n## Setup\n\n### Navigation\nThe theme includes navigation for:\n- Blog (home page)\n- About\n- Now\n- Contact\n\nCreate these pages in your Ghost admin to match the navigation.\n\n### Fonts\nThe theme uses Google Fonts:\n- **Alata** for headings\n- **Inter** for body text\n\nThese are loaded automatically from Google Fonts CDN.\n\n### Customization\n\n#### Colors\nYou can customize colors by editing the CSS variables in `assets/css/style.css`:\n\n```css\n:root {\n  --color-primary: #000000;\n  --color-accent: #3b82f6;\n  /* ... other variables */\n}\n```\n\n#### Posts Per Page\nConfigure in `package.json`:\n\n```json\n{\n  \"config\": {\n    \"posts_per_page\": 9\n  }\n}\n```\n\n#### Social Links\nThe theme includes social icons for:\n- X (Twitter) - Configured via Ghost admin\n- Facebook - Configured via Ghost admin  \n- GitHub\n- Hugging Face\n- Instagram\n- Stack Overflow\n- LinkedIn\n- RSS Feed - Automatic\n\nTo configure the additional social links, add the following code to your Ghost site's \"Code Injection\" footer:\n\n```html\n\u003cscript\u003e\ndocument.addEventListener('DOMContentLoaded', function() {\n    if (window.socialLinksManager) {\n        window.socialLinksManager.setSocialUrls({\n            github: 'https://github.com/yourusername',\n            huggingface: 'https://huggingface.co/yourusername',\n            instagram: 'https://instagram.com/yourusername',\n            stackoverflow: 'https://stackoverflow.com/users/youruser',\n            linkedin: 'https://linkedin.com/in/yourusername'\n        });\n    }\n});\n\u003c/script\u003e\n```\n\nLinks without URLs will be automatically hidden.\n\n## Theme Structure\n\n```\nmodern-personal-theme/\n├── package.json          # Theme configuration\n├── default.hbs          # Main layout template\n├── index.hbs            # Home page template\n├── post.hbs             # Individual post template\n├── page.hbs             # Static page template\n├── author.hbs           # Author page template\n├── tag.hbs              # Tag page template\n├── partials/\n│   └── post-card.hbs    # Reusable post card component\n└── assets/\n    ├── css/\n    │   └── style.css    # Main stylesheet\n    └── js/\n        └── main.js      # JavaScript functionality\n```\n\n## Browser Support\n\n- Chrome (latest)\n- Firefox (latest)\n- Safari (latest)\n- Edge (latest)\n- iOS Safari\n- Chrome Mobile\n\n## Development\n\nTo customize this theme:\n\n1. Edit the Handlebars templates (.hbs files)\n2. Modify styles in `assets/css/style.css`\n3. Update JavaScript in `assets/js/main.js`\n4. Test using Ghost CLI: `ghost start`\n\n## Ghost Version Compatibility\n\nThis theme is compatible with Ghost 5.0+ and follows the latest Ghost theme specifications.\n\n## License\n\nMIT License - feel free to use this theme for personal or commercial projects.\n\n## Support\n\nFor issues or questions about this theme, please check the Ghost theme documentation or create an issue in the theme repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcdvel%2Fmodern-vibes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcdvel%2Fmodern-vibes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcdvel%2Fmodern-vibes/lists"}