Reputation: 1463
When selecting the theme for the github page of an existing repository, you can see this set of buttons (in the Minimal theme, for example):
But when I visit my github pages site, the buttons are not there; all I can see is my readme.md
for the repository, and the View the Project on GitHub link. Is there a way to get these buttons on my page?
Upvotes: 13
Views: 6640
Reputation: 24434
This question is a little old, but I had the same problem and the chosen answer didn't help me out. I found this answer on another SO question. Basically it says your options are:
Update
I never noticed that enabling GitHub Pages on the GitHub repository automatically added the _config.yml
file to the repository, so once I pulled the latest changes from the remote repository I saw the file and was able to simply add show_downloads: true
to it as Abdul Hadi's answer suggests. I'm leaving the above suggestions in this answer though, as they are still applicable if you are trying to have the download links show in a theme that does not natively support them.
Upvotes: 0