{"id":18427675,"url":"https://github.com/eldar/personal-website","last_synced_at":"2026-01-24T17:04:12.695Z","repository":{"id":66937311,"uuid":"163579168","full_name":"eldar/personal-website","owner":"eldar","description":"Personal website based on the Academic theme for Hugo","archived":false,"fork":false,"pushed_at":"2025-01-02T11:55:10.000Z","size":64330,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-13T21:14:29.375Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TeX","has_issues":true,"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/eldar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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-12-30T10:30:23.000Z","updated_at":"2025-01-02T11:55:14.000Z","dependencies_parsed_at":"2025-01-02T12:32:40.494Z","dependency_job_id":null,"html_url":"https://github.com/eldar/personal-website","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/eldar/personal-website","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eldar%2Fpersonal-website","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eldar%2Fpersonal-website/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eldar%2Fpersonal-website/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eldar%2Fpersonal-website/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eldar","download_url":"https://codeload.github.com/eldar/personal-website/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eldar%2Fpersonal-website/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28732218,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T10:24:43.181Z","status":"ssl_error","status_checked_at":"2026-01-24T10:24:36.112Z","response_time":89,"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":[],"created_at":"2024-11-06T05:11:29.831Z","updated_at":"2026-01-24T17:04:12.685Z","avatar_url":"https://github.com/eldar.png","language":"TeX","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Academic Webpage\n\nThis is the source code for my [personal webpage](https://eldar.github.io/).\n\nThe code is based on the **Academic** framework for **Hugo**.\nThis framework allows you to never touch HTML/CSS to build your own website.\nI simplified and streamlined the theme significantly to match the type of personal webpages you would find in the Machine Learning community.\nYou can check out [the original demo](https://themes.gohugo.io/theme/academic/) of Academic or its [official documentation](https://sourcethemes.com/academic/docs/).\n\nIn this README I will re-iterate the very basics needed to get started, mostly for my own sake.\n\n## Getting Started\n\n1. Download [Hugo v0.53](https://github.com/gohugoio/hugo/releases/tag/v0.53).\n\n2. Clone this repo:\n\n```bash\ngit clone --recurse-submodules git@github.com:eldar/personal-website.git\ncd mywebsite\n```\n\n3. View your website:\n\n```bash\nhugo server\n```\n\nNow you can go to http://localhost:1313 and your new Academic powered website should appear.\n\n4. Edit bio and publications in `content/`\n\n5. Regenerate the websiste by running\n\n```bash\nhugo\n```\n\n6. Push to github.io repo:\n\n```bash\ncd public\ngit checkout main\ngit add .\ngit commit\ngit push origin main\n```\n\n7. Commit changes to the website source code:\n\n```bash\ncd ..\ngit add public content/*\ngit commit\ngit push\n```\n\n## Filling Content\n\n### General Info\n1. Set your name in `config.toml` in the `[params]` section. Also set the title of the website\n\n2. Add short bio to the `content/home/about.md`\n\n### Publications\n1. Now you can start adding publications. Publications are stored in the `content/publication` directory, you can use mine as an example. In order to generate data for publication you can use a python tool that is supplied with the **Academic** framework:\n\n```bash\n# First install the tool:\npip3 install academic\n\n# then import the .bib file into the website\n# make sure your current directory is the root of the website repo\nacademic import --bibtex /path/to/publication.bib\n```\n\n2. The previous step will create a directory corresponding to the publication under `content/publication`. This directory will contain file `index.md` which contains various definitions. You will have to open it and make further edits:\n\n- Set the abstract to the `abstract` field, if not already there\n- Set unique publication identifier to the `shortname`, much like you do in the bibtex, for example `\"watson2018cvpr\"`\n- Specify abbreviation for the conference in `venue` field, for example `\"CVPR, 2018\"`\n- You can place an optional teaser image to the publication directory, its file name has to contain `featured` in it.\n- Add various URLs associated with the paper: `url_pdf` to link to the PDF of the paper (required), `url_project` for the project page, `url_video` for the video, `url_code` for the code and `url_slides` for the slides.\n\n## License\n\nCopyright 2018 [George Cushen](https://georgecushen.com), [Eldar Insafutdinov](https://eldar.github.io).\n\nReleased under the [MIT](https://github.com/sourcethemes/academic-kickstart/blob/master/LICENSE.md) license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feldar%2Fpersonal-website","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feldar%2Fpersonal-website","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feldar%2Fpersonal-website/lists"}