{"id":14979382,"url":"https://github.com/trybnetic/minimalist","last_synced_at":"2025-04-09T07:10:05.749Z","repository":{"id":25002307,"uuid":"102721100","full_name":"Trybnetic/minimalist","owner":"Trybnetic","description":"A simple and minimalistic jekyll blogging theme","archived":false,"fork":false,"pushed_at":"2025-03-21T17:15:19.000Z","size":58,"stargazers_count":51,"open_issues_count":16,"forks_count":38,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-09T07:10:00.900Z","etag":null,"topics":["github-pages","jekyll","jekyll-theme","jekyll-themes"],"latest_commit_sha":null,"homepage":"http://www.marc-weitz.de/minimalist/","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/Trybnetic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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-09-07T09:54:47.000Z","updated_at":"2025-03-29T04:40:16.000Z","dependencies_parsed_at":"2024-09-19T02:04:15.965Z","dependency_job_id":null,"html_url":"https://github.com/Trybnetic/minimalist","commit_stats":{"total_commits":43,"total_committers":2,"mean_commits":21.5,"dds":"0.046511627906976716","last_synced_commit":"acc98beec28c38a0a9bf7a5efcec1a6442647110"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Trybnetic%2Fminimalist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Trybnetic%2Fminimalist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Trybnetic%2Fminimalist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Trybnetic%2Fminimalist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Trybnetic","download_url":"https://codeload.github.com/Trybnetic/minimalist/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247994122,"owners_count":21030050,"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":["github-pages","jekyll","jekyll-theme","jekyll-themes"],"created_at":"2024-09-24T13:59:54.956Z","updated_at":"2025-04-09T07:10:05.724Z","avatar_url":"https://github.com/Trybnetic.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Minimalist\n\n[![Build Status](https://travis-ci.org/Trybnetic/minimalist.svg?branch=master)](https://travis-ci.org/Trybnetic/minimalist)\n[![License](https://img.shields.io/github/license/Trybnetic/minimalist.svg)](https://github.com/Trybnetic/minimalist/blob/master/LICENSE.txt)  \n\nMinimalist is a simple and light weighted [jekyll](http://jekyllrb.com/) theme. It focuses on a minimalistic design but still providing all functionality for a personal blog.\n\n## Installation\nTo install Open Recipes you have to install [jekyll](https://jekyllrb.com). After successfully installing jekyll you have to clone this repository to your computer:\n```\ngit clone https://github.com/Trybnetic/minimalist.git\n```\nThen switch into the directory and start jekyll:\n```\ncd minimalist\nbundle exec jekyll serve\n```\nThe last command starts a webserver on your local machine. Now you should have a copy of the site running at `http://127.0.0.1:4000/`. Open this url with your webbrowser and explore the site.  \nBy changing some of the files (except of the `config.yml`) the changes will be displayed immediately.\n\n## Usage\nAfter you successfully installed the theme on your computer you can add additional blog posts by creating new files in the `_posts` directory. The new files have to follow the name convention `year-month-day-title.md`.\n\n\n## Post structure\n**Example:**\n```\n---\nlayout: post\ntitle:  \"Lorem ipsum\"\ndate:   2017-09-06 01:03:29 +0200\ncategories: lorem ipsum\n---\n\nEius ut fugiat omnis. Autem nihil dignissimos deserunt eum. In adipisci ipsum\nnatus saepe facere. Aspernatur velit autem sed. Rerum provident non incidunt id\nexpedita aliquam non. Eum sit saepe autem nam aut voluptatem non et.\n\n\u003c!--more--\u003e\n\nSequi et ut consequatur et incidunt expedita provident. Iste ipsa eaque qui.\nTotam vitae quasi nulla aut aliquam harum. Quibusdam et deserunt possimus\ndolores voluptate facilis corrupti vero.\n\n```\n\nEach post consits of a header and a body. In the header defined by the `---`, you have to make basic definitions concerning the blog post.   \nIn the first line of the example the layout is specified. This should be `layout: post` for all blog post except you want to add a custom layout for a certain media type. In the second line the title of the blog post is specified. In the third line you have to add the date of publication which will be displayed on top of the blog post on the website. In the fourth and last line of the header you can add categories so your blog posts gets displayed at the categories site `/categories/\u003ccategory\u003e/`. The existing categories can be found in the `categories/` folder.  \nFinally, you can add `\u003c!--more--\u003e` in your text to indicate that the text till this delimiter should be used as a preview at the homepage.\n\n## Categories\nThis theme supports using categories. If you want to add custom categories you need to add a `\u003cyour category name\u003e.md` file to the `categories/` folder, where `\u003cyour category name\u003e` denotes the name of the category you want to add.  \nYour `\u003cyour category name\u003e.md` needs to contain the following lines:\n```\n---\nlayout: category\ncategory: \u003cyour category name\u003e\npermalink: /categories/\u003cyour category name\u003e/\n---\n```\nThe first line specifies that the layout of the rendered site is category. In the second line you have to specify the name of the category you want to add. And finally, you have to specify the link scheme to your category site.\n\n## Host your own blog\nThe simplest way to host your own blog with the [Minimalist](https://trybnetic.github.io/minimalist/) theme is to fork [the repository](https://github.com/Trybnetic/minimalist/) and use the [gh-pages](https://pages.github.com/) functionality provided by [GitHub](https://github.com/).\n\n## License\nThis jekyll theme is [licensed under the MIT license](https://github.com/Trybnetic/minimalist/blob/master/LICENSE.txt). Check the license on whether and how you are allowed to use, modify and distribute this theme.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrybnetic%2Fminimalist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrybnetic%2Fminimalist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrybnetic%2Fminimalist/lists"}