{"id":16391060,"url":"https://github.com/rishikanthc/paperpile","last_synced_at":"2026-02-11T04:31:35.231Z","repository":{"id":235697025,"uuid":"782594149","full_name":"rishikanthc/paperpile","owner":"rishikanthc","description":null,"archived":false,"fork":false,"pushed_at":"2024-04-05T16:05:04.000Z","size":201,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-07T14:48:15.526Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/rishikanthc.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}},"created_at":"2024-04-05T16:05:03.000Z","updated_at":"2024-04-05T16:05:08.000Z","dependencies_parsed_at":"2024-04-24T09:12:16.725Z","dependency_job_id":"0e9caf06-9596-4e15-b282-703821ba9c6f","html_url":"https://github.com/rishikanthc/paperpile","commit_stats":null,"previous_names":["rishikanthc/paperpile"],"tags_count":0,"template":false,"template_full_name":"asimpletune/zola-tailwindcss","purl":"pkg:github/rishikanthc/paperpile","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishikanthc%2Fpaperpile","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishikanthc%2Fpaperpile/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishikanthc%2Fpaperpile/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishikanthc%2Fpaperpile/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rishikanthc","download_url":"https://codeload.github.com/rishikanthc/paperpile/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishikanthc%2Fpaperpile/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29327091,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T03:52:29.695Z","status":"ssl_error","status_checked_at":"2026-02-11T03:52:23.094Z","response_time":97,"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-10-11T04:44:56.894Z","updated_at":"2026-02-11T04:31:35.208Z","avatar_url":"https://github.com/rishikanthc.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# zola-tailwindcss\n\nThis project is a GitHub template for creating web projects that use the [Zola](https://getzola.org) static site generator, in conjunction with [Tailwindcss](https://tailwindcss.com). The [project's website](https://zola-tailwind.spenc.es) is also built from the same repository.\n\nBelow are some details that will help you get started.\n\n## Usage\n\nStart by visiting the [project's GitHub repository](https://github.com/asimpletune/zola-tailwindcss), and then click use the template and \"create a new repository\".\n\n![Create a new repository](https://zola-tailwind.spenc.es/screenshot.png)\n\nHere's how you do stuff:\n\n```zsh\n# installs everything\n# that you need\nnpm install\n\n# build builds once,\n# output in `./public`\nnpm run build\n\n# starts a local server\n# that watches/rebuilds\nnpm run serve\n```\n\nFor example, you can run `npm run serve` and then go to `localhost:1111` in your browser to see the websites. As you make changes to the code or content, the website will be updated.\n\n## Customization\n\nTo use this for your own project you will probably want to take the following steps to customize (since GitHub doesn't yet support templating variables for GH template repos):\n\n1. Change `base_url` in `config.toml` to your website's URL\n2. Use whatever `LICENSE` file that you want (default is MIT)\n2. Add anything you might want in the `package.json` file, i.e. `name`, `author`, and `license` are the bare minimum\n\nHere's an example\n\n```json\n{\n  \"name\": \"\u003cYOUR_PROJECT\u003e\",\n  \"version\": \"1.0.0\",\n  \"description\": \"\u003cDESCRIPTION_OF_YOUR_PROJECT\u003e\",\n  \"scripts\": {\n    \"build\": \"zola build \u0026\u0026 npx tailwindcss -i ./public/input.css -o ./public/style.css -m\",\n    \"serve\": \"zola serve --interface 0.0.0.0 \u0026 npx tailwindcss -i ./public/input.css -o ./public/style.css --watch \u0026\u0026 wait\",\n    \"test\": \"echo \\\"Error: no test specified\\\" \u0026\u0026 exit 1\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"\u003cYOUR_PROJECT_REPO\u003e\"\n  },\n  \"author\": \"\u003cYOUR_NAME\u003e\",\n  \"license\": \"\u003cLICENSE_NAME\u003e\",\n  \"devDependencies\": {\n    \"@tailwindcss/typography\": \"^0.5.9\",\n    \"tailwindcss\": \"^3.3.1\"\n  }\n}\n```\n\n## Content\n\nContent is stored in [markdown text](https://commonmark.org/help/) files located within the `content` directory. Files named `_index.md` are called \"sections\", and files by any other name ending in `.md` are called \"pages\". For more information you can read the [zola](https://www.getzola.org/documentation/content/overview/) documentation. The markdown is inserted into the html via the specified \"[template](#templates)\", which is indicated at the top of the content's \"front matter\".\n\n## Templating\n\nTemplates are html files stored in the `templates` directory. Their purpose is to decide where in the html the content goes. The content is accessible to the template as a variable named either `section.content` or `page.content`, depending on the context. Within the template file, you can use a templating language called [tera](http://tera.netlify.app/docs/). There are examples throughout this document of templating, wherever you see the `{{ template_variable }}`.\n\n## Styling\n\nThis website uses [tailwindcss](https://tailwindcss.com/) for most of its styling. Separate CSS can be added in the `sass/input.scss` file, but usually it is not necessary to add any custom styling. During the build/rendering process, this file is compiled by zola from sass into normal css, and then from there it is read by tailwind which adds generates the CSS based on whatever tailwind classes are references in your html, javascript, and markdown. The final result is a file called `style.css`, which is output under `./public`, and that is used by the website. *(Note: see `tailwind.config.js` for what file types and directories are \"watched\")*\n\n### Typography\n\nSince Zola generates content from markdown files, the Typography plugin is more or less mandatory.\n\nThe tailwind [typography plugin](https://tailwindcss.com/docs/typography-plugin) is used to style content that is generated from markdown. Any child elements that are nested within an element that has the class `prose` will receive the styling. The default styling can further be customized in the `tailwind.config.js` file.\n\n## Dependencies and Tools\n\n* [zola](https://getzola.org) `brew install zola`\n* node, npm\n\n## Notes:\n\n* The `npm run serve` script runs two long-running tasks in parallel and allows both to write simultaneously to STDOUT by using [a mixture of `wait` and sending jobs to the background](https://www.cyberciti.biz/faq/how-to-run-command-or-code-in-parallel-in-bash-shell-under-linux-or-unix/)\n* Sometimes important changes for styling need to be made in the `tailwind.config.js` file","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frishikanthc%2Fpaperpile","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frishikanthc%2Fpaperpile","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frishikanthc%2Fpaperpile/lists"}