Merge pull request #8 from jtom38/features/remote-href-update

Adding the base url to the href to see if it works
This commit is contained in:
James Tombleson 2022-10-01 22:26:58 -07:00 committed by GitHub
commit d103909a99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 5 deletions

View File

@ -1,2 +1,5 @@
# cookbook
Personal Cookbook hosted on Github built with Hugo
This is my personal Cookbook hosted on Github built with Hugo.
The site can be viewed here [here](https://jtom38.github.io/cookbook)

View File

@ -12,10 +12,10 @@
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item" href="/recipies">Recipies</a>
<a class="navbar-item" href="/tags">Tags</a>
<a class="navbar-item" href="/categories">Categories</a>
<a class="navbar-item" href="/recipies/index.xml">RSS Feed</a>
<a class="navbar-item" href="{{ .Site.BaseURL }}recipies">Recipies</a>
<a class="navbar-item" href="{{ .Site.BaseURL }}tags">Tags</a>
<a class="navbar-item" href="{{ .Site.BaseURL }}categories">Categories</a>
<a class="navbar-item" href="{{ .Site.BaseURL }}recipies/index.xml">RSS Feed</a>
</div>
</div>
</nav>