Imran
Imran

Reputation: 656

Github pages homepage remove link at the top

I created my own website using GitHub Pages here.

However the homepage has a big hyperlink at the top which isn't included in the Markdown. It also doesn't appear in the README.md file here.

How can I get rid of it?

Upvotes: 6

Views: 3310

Answers (2)

tselvan
tselvan

Reputation: 692

In your _config.yml add title: <your title>. If <your title> is equal to your page title, it won't show the hyperlink.

Ref: https://github.com/pages-themes/primer/blob/master/_layouts/default.html

Upvotes: 7

Bricky
Bricky

Reputation: 2745

I think this is included because it's actually serving the readme file. Can you serve an HTML file instead? You can use a Markdown to HTML convertor.

Try dropping your markdown into the link above, and pasting the HTML output into a new file named index.html in your repo.

Upvotes: 1

Related Questions