{"id":16589186,"url":"https://github.com/pineapplegiant/pineapplegiant.github.io","last_synced_at":"2026-03-11T00:03:34.696Z","repository":{"id":130285328,"uuid":"107129505","full_name":"pineapplegiant/pineapplegiant.github.io","owner":"pineapplegiant","description":"My personal website! ⚡️","archived":false,"fork":false,"pushed_at":"2024-02-11T01:18:11.000Z","size":9574,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-06T11:30:16.447Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://pineapplegiant.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/pineapplegiant.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}},"created_at":"2017-10-16T13:14:14.000Z","updated_at":"2023-10-02T20:28:49.000Z","dependencies_parsed_at":"2025-03-06T11:40:30.965Z","dependency_job_id":null,"html_url":"https://github.com/pineapplegiant/pineapplegiant.github.io","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pineapplegiant/pineapplegiant.github.io","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pineapplegiant%2Fpineapplegiant.github.io","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pineapplegiant%2Fpineapplegiant.github.io/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pineapplegiant%2Fpineapplegiant.github.io/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pineapplegiant%2Fpineapplegiant.github.io/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pineapplegiant","download_url":"https://codeload.github.com/pineapplegiant/pineapplegiant.github.io/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pineapplegiant%2Fpineapplegiant.github.io/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30362726,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T21:41:54.280Z","status":"ssl_error","status_checked_at":"2026-03-10T21:40:59.357Z","response_time":106,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":[],"created_at":"2024-10-11T23:08:02.109Z","updated_at":"2026-03-11T00:03:34.675Z","avatar_url":"https://github.com/pineapplegiant.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [Welcome to the code repo for my personal website](https://pineapplegiant.com)\n\nIt was made with lots of ❤️  and care.\n\nBelow you'll find the (slightly trimmed) directory structure for my [ Hugo site ](https://gohugo.io/). I'll go through it all alphabetically.\n\n*  **archetypes**   - Directory used for Hugo to add specific YAML/TOML/JSON style \"front-matter\" (basically fancy variables) for your blog posts. If you want diffrent type of content you could run `hugo new blog/new_post.md` and hugo would populate the front matter with the `blog` content front-matter. A script outputting a template basically.\n*  **config.toml**  - This is my site configuration file. Major settings live here. My main menu links live in there too.\n*  **content**      - This is where all the content for my site is. So like my `about.md`. Blog posts, Project Posts. Everything!\n*  **data**         - This is Hugo's 'database'. If I ever wanna import some JSON stuff over and use that info I can in here.\n*  **layouts**      - This is where Hugo's magic *really* lives. Where all of my HTML template code live.\n    * **partials**  - Bits of code that are injected into different templates\n    * **defaults**  - The default templates for hugo other \"Type\" pages. Hugo breaks HTML templates into 2 categories: `list.html` and `single.html` templates.\n* **static**        - Pretty self explanatory. Where my images and svg stuff live.\n* **themes**        - If I wanted to use a theme I would include the repository here. Basically it's somebody else's `layouts` directory that pulls their \"list\" and \"single\" templates.\n* *(netlify.toml)*  - Configuration for netlify hosting.\n\n```css\n.\n├── README.md\n├── archetypes/\n│   └── default.md\n├── assets/\n│   ├── sass/\n│   │   └── main.scss\n│   └── js/\n│       └── main.js\n├── config.toml\n├── content/\n│   ├── about.md\n│   ├── blog\n│   └── projects\n├── data/\n├── layouts/\n│   ├── 404.html\n│   ├── _default/\n│   │   ├── baseof.html\n│   │   ├── list.html\n│   │   └── single.html\n│   ├── about/\n│   │   └── single.html\n│   ├── blog/\n│   │   ├── list.html\n│   │   └── single.html\n│   ├── index.html\n│   ├── partials/\n│   │   ├── footer.html\n│   │   ├── header.html\n│   │   └── main.html\n│   ├── projects/\n├── netlify.toml\n├── public/\n├── static/\n│   ├── assets\n│   │   ├── gmo-logo.svg\n│   │   ├── pines.svg\n│   ├── img\n│   │   └── GMO.png\n└── themes/\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpineapplegiant%2Fpineapplegiant.github.io","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpineapplegiant%2Fpineapplegiant.github.io","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpineapplegiant%2Fpineapplegiant.github.io/lists"}