Skip to content

Commit

Permalink
Adding a contact link
Browse files Browse the repository at this point in the history
  • Loading branch information
rjurney committed Dec 4, 2024
1 parent 89db6d8 commit 3814c94
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 25 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ bundle install
bundle exec jekyll serve
```

To reload automatically with sass changes, run
To reload automatically with sass changes, run:

```
bundle exec jekyll serve --livereload
```


The site will serve on [localhost:4000](http://localhost:4000)

- Note: in _config.yaml, baseurl should be empty ""
Expand Down
41 changes: 18 additions & 23 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -1,26 +1,21 @@
<header class="site-header header-bg">
<div class="wrapper">
{%- assign default_paths = site.pages | map: "path" -%} {%- assign
page_paths = site.header_pages | default: default_paths -%} {%- assign
titles_size = site.pages | map: 'title' | join: '' | size -%}
<div class="wrapper">
{%- assign default_paths = site.pages | map: "path" -%} {%- assign
page_paths = site.header_pages | default: default_paths -%} {%- assign
titles_size = site.pages | map: 'title' | join: '' | size -%}

<nav class="custom-nav">
<div class="trigger show-link">
<a class="page-link" href="https://blog.graphlet.ai">Blog</a>
<a
class="page-link"
href="https://github.com/Graphlet-AI/graphlet"
style="font-weight: 700"
>Github</a
>
</div>
</nav>
<div class="brand-logo">
<a rel="author" href="{{ '/' | relative_url }}"
><img src="{{site.baseurl}}/assets/header/logo.png"
/></a>
<nav class="custom-nav">
<div class="trigger show-link">
<a class="page-link" href="mailto:[email protected]">Contact</a>
<a class="page-link" href="https://blog.graphlet.ai">Blog</a>
<a class="page-link" href="https://github.com/Graphlet-AI/graphml-class"
style="font-weight: 700">Github</a>
</div>
</nav>
<div class="brand-logo">
<a rel="author" href="{{ '/' | relative_url }}"><img src="{{site.baseurl}}/assets/header/logo.png" /></a>
</div>
<h2 class="navbar-heading">{{page.header | upcase}}</h2>
<p class="navbar-subheading">{{page.description}}</p>
</div>
<h2 class="navbar-heading">{{page.header | upcase}}</h2>
<p class="navbar-subheading">{{page.description}}</p>
</div>
</header>
</header>

0 comments on commit 3814c94

Please sign in to comment.