{"id":44988723,"url":"https://github.com/mbbischoff/website","last_synced_at":"2026-02-18T20:51:52.373Z","repository":{"id":493726,"uuid":"120227","full_name":"mbbischoff/website","owner":"mbbischoff","description":"A personal website.","archived":false,"fork":false,"pushed_at":"2025-12-22T22:22:47.000Z","size":118855,"stargazers_count":11,"open_issues_count":80,"forks_count":4,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-14T22:23:24.253Z","etag":null,"topics":["blog","jekyll","website"],"latest_commit_sha":null,"homepage":"https://mbbischoff.com/","language":"HTML","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/mbbischoff.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2009-02-02T22:23:45.000Z","updated_at":"2025-12-22T22:22:50.000Z","dependencies_parsed_at":"2024-06-13T02:49:35.764Z","dependency_job_id":null,"html_url":"https://github.com/mbbischoff/website","commit_stats":null,"previous_names":["mattbischoff/website","mattbischoff/matthewbischoff.com","mbbischoff/website"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/mbbischoff/website","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbbischoff%2Fwebsite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbbischoff%2Fwebsite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbbischoff%2Fwebsite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbbischoff%2Fwebsite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mbbischoff","download_url":"https://codeload.github.com/mbbischoff/website/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbbischoff%2Fwebsite/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29595283,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T18:54:29.675Z","status":"ssl_error","status_checked_at":"2026-02-18T18:50:50.517Z","response_time":162,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["blog","jekyll","website"],"created_at":"2026-02-18T20:51:51.546Z","updated_at":"2026-02-18T20:51:52.365Z","avatar_url":"https://github.com/mbbischoff.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"mbbischoff.com\n=======================\n\n## Creating a post\n\nAll posts are markdown files and they go inside the **`_posts`** folder. The title section of the file name (e.g., **`don't-go-to-college`**) will determine the permalink of the post.\n\n## Front Matter\n\nFront matter is the meta-data that goes at the beginning of each post.\n\n| Field | Optional | Description |\n| --- | --- | --- |\n| `title` | required (string) | Determines the header of the post on the home page and on the show page, as well as the name that will appear when sharing the post on social media. |\n| `permalink`| optional (string)| Determines the permalink of the post. Note: if this property is not present, the permalink will be set by the name of the markdown file. |\n| `layout` | required (string) | Should always be set to post |\n| `image` | optional (string) | File name that determines the image that will appear when sharing the post on social media. Example: release-notes-2016.jpg |\n| `description` | optional (string) | Determines the description text that will when sharing the post on social media. |\n| `format` | optional (string) | Can be set to post (default), link, or short. Determines the layout type of the post. |\n| `categories` | optional (array) | Determines the categories the post will appear under. Each category must be already present in the _category folder (see “Creating a category”) |\n| `tags` | optional (array) | Determines the tags in the HTML meta data that is used by Facebook. |\n\n### Deprecated Fields\n\n| `color` | conditionally required (string) | If the post is a tweet, it must be set to one of the following: red, purple, violet, blue, cyan, green~. Determines the background color of the tweet |\n\n## “Read More” truncation\n\nAdd an HTML comment like so **`\u003c!-- more --\u003e`** in the markdown of your post where you want the read more button to be.\n\n---\n\n## Creating a category\n\nCategories must be created (and destroyed) manually. Let’s say I want to add an “animals” category.\n\n1. Create a new HTML file in the **`_category `** folder titled **`animals.md`**\n2. In that file, add the following text\n\n\n```\n---\ntitle: Animals\npermalink: \"/category/animals/\"\nname: animals\n---\n```\n\n## How To\n\n* Serve the site locally: `bundle exec jekyll serve`\n\n\n### Inspo\n\n* https://justin.searls.co\n* https://jmduke.com\n* https://ped.ro\n  * https://ped.ro/writing/website-refresh-2023\n* https://benji.org\n* https://blog.jim-nielsen.com\n* https://lakshchakraborty.com\n* https://alxmjo.com/jekyll-microblog\n* https://tbrown.org\n* https://chriscoyier.net\n* https://pawelgrzybek.com/\n* https://lmnt.me\n* https://daverupert.com/\n\n\nTest","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmbbischoff%2Fwebsite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmbbischoff%2Fwebsite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmbbischoff%2Fwebsite/lists"}