{"id":23872063,"url":"https://github.com/eddiewebb/json-resume","last_synced_at":"2026-06-10T06:30:19.990Z","repository":{"id":95271549,"uuid":"119745371","full_name":"eddiewebb/json-resume","owner":"eddiewebb","description":"My personal site, see `hugo-resume` for the base theme!","archived":false,"fork":false,"pushed_at":"2025-01-13T20:10:04.000Z","size":184168,"stargazers_count":7,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-13T21:22:24.927Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://github.com/eddiewebb/hugo-resume","language":"HTML","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eddiewebb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2018-01-31T21:26:12.000Z","updated_at":"2025-01-13T20:10:09.000Z","dependencies_parsed_at":"2025-01-13T21:30:56.810Z","dependency_job_id":null,"html_url":"https://github.com/eddiewebb/json-resume","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eddiewebb%2Fjson-resume","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eddiewebb%2Fjson-resume/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eddiewebb%2Fjson-resume/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eddiewebb%2Fjson-resume/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eddiewebb","download_url":"https://codeload.github.com/eddiewebb/json-resume/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240222493,"owners_count":19767458,"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","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":"2025-01-03T15:19:30.417Z","updated_at":"2026-06-10T06:30:17.936Z","avatar_url":"https://github.com/eddiewebb.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Data Fed resume\n\nCreated from [Start Bootstrap - Resume](https://startbootstrap.com/template-overviews/resume/). Uses HUGO to generate pages from various data files in JSON.\n\nPublished via CI pipelines to [Eddie's Website](https://edwardawebb.com), current status: [![CircleCI](https://circleci.com/gh/eddiewebb/json-resume.svg?style=svg)](https://circleci.com/gh/eddiewebb/json-resume)\n\n\n## Technology \u0026 Setup\n\nThe primary technology is HTML5 and CSS3 to create a static webpage.  Rather than copy and paste the same formatting used for multiple projects, experiences and others, I dropped the data into json files, and have a single template in HTML.  Using gohugo to render the repetitive formatting as needed.\n\n### Data files\n\n- [/src/data/skills.json](src/data/skills.json)\n- [/src/data/contributions.json](src/data/contributions.json)\n- [/src/data/experience.json](src/data/experience.json)\n- [/src/data/publications.json](src/data/publications.json)\n\n### projects\nInitially projects were also in their own JSON file, but I decided I wanted to allow more detail and custom formatting, and with the move to hugo created a dedicated archetype `projects`.  Any projects are added with `hugo add projects/name-of-project.html`\n\n### Resume theme\n\nFollowing Hugo conventions, all the styling is embodied in the [`resume` theme](https://github.com/eddiewebb/hugo-resume).\n\nThe [partials](/src/theme/resume/layouts/partials) contain corresponding \\*.html files for each data type in json files.\n\n```html\n\u003csection class=\"resume-section p-3 p-lg-5 d-flex flex-column\" id=\"publications\"\u003e\n  \u003cdiv class=\"my-auto\" id=\"publications-content\"\u003e\n    \u003ch2 class=\"mb-5\"\u003ePublications\u003c/h2\u003e\n  \u003c/div\u003e\n  {{ range .Site.Data.publications }}\n      \u003cdiv class=\"resume-item d-flex flex-column flex-md-row mb-5\"\u003e\n        \u003cdiv class=\"publication-content mr-auto\"\u003e\n          \u003ch3 class=\"mb-0\"\u003e{{ .type }} - \u003ca href=\"{{ .link }}\"\u003e{{ .name }}\u003c/a\u003e\u003c/h3\u003e\n          \u003cp\u003e{{ .summary | safeHTML }}\u003c/p\u003e\n          \u003cul class=\"tags\"\u003e\n              {{ range  .tags }}\n                \u003cli\u003e\u003ca class=\"tag\"\u003e{{ . }}\u003c/a \u003e\u003c/li\u003e\n              {{ end }}\n          \u003c/ul\u003e\n        \u003c/div\u003e\n        \u003cdiv class=\"resume-date text-md-right\"\u003e\n          \u003cspan class=\"text-primary\"\u003e{{ .date }}\u003c/span\u003e\n          \u003cimg src=\"{{ .image }}\" style=\"max-width:250px;padding:5px;\"/\u003e\n        \u003c/div\u003e\n      \u003c/div\u003e\n  {{ end }}\n\u003c/section\u003e\n\n```\n\n\n## About (from Start Bootstrap)\n\nStart Bootstrap is an open source library of free Bootstrap templates and themes. All of the free templates and themes on Start Bootstrap are released under the MIT license, which means you can use them for any purpose, even for commercial projects.\n\n* https://startbootstrap.com\n* https://twitter.com/SBootstrap\n\nStart Bootstrap was created by and is maintained by **[David Miller](http://davidmiller.io/)**, Owner of [Blackrock Digital](http://blackrockdigital.io/).\n\n* http://davidmiller.io\n* https://twitter.com/davidmillerskt\n* https://github.com/davidtmiller\n\nStart Bootstrap is based on the [Bootstrap](http://getbootstrap.com/) framework created by [Mark Otto](https://twitter.com/mdo) and [Jacob Thorton](https://twitter.com/fat).\n\n## Copyright and License\n\nCopyright 2013-2018 Blackrock Digital LLC. Code released under the [MIT](https://github.com/BlackrockDigital/startbootstrap-resume/blob/gh-pages/LICENSE) license.\n\n\n\n\n## Serving locally with dfocker\n\ndocker run -p1313:1313 -v $PWD:/tmp/site eddiewebb/hugo:0.84.4-webp hugo serve -s /tmp/site/src --bind 0.0.0.0\n\n OR\n\ndocker run --rm -it   -v $(pwd):/src -p 1313:1313   klakegg/hugo:0.93.2-ext serve -s src/","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feddiewebb%2Fjson-resume","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feddiewebb%2Fjson-resume","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feddiewebb%2Fjson-resume/lists"}