-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #130 from datacite/update-footer-links
Update footer template
- Loading branch information
Showing
1 changed file
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,56 +3,56 @@ | |
<footer class='row footer' style="position:static"> | ||
<div class="container-fluid"> | ||
<div class='col-md-3 col-sm-4'> | ||
<h4>About DataCite</h4> | ||
<h4>About Us</h4> | ||
<ul> | ||
<% data.links.about_links.each do |link| %> | ||
<li><%= link_to link.name, link.url %></a></li> | ||
<% end %> | ||
</ul> | ||
</div> | ||
<div class='col-md-3 col-sm-4'> | ||
<h4>Services</h4> | ||
<h4>Work With Us</h4> | ||
<ul> | ||
<% data.links.services_links.each do |link| %> | ||
<li><%= link_to link.name, link.url %></a></li> | ||
<% end %> | ||
</ul> | ||
</div> | ||
<div class='col-md-3 col-sm-4'> | ||
<h4>Resources</h4> | ||
<h4>Membership</h4> | ||
<ul> | ||
<% data.links.resources_links.each do |link| %> | ||
<% data.links.community_links.each do |link| %> | ||
<li><%= link_to link.name, link.url %></a></li> | ||
<% end %> | ||
</ul> | ||
<h4>Community</h4> | ||
<h4>Resources</h4> | ||
<ul> | ||
<% data.links.community_links.each do |link| %> | ||
<% data.links.resources_links.each do |link| %> | ||
<li><%= link_to link.name, link.url %></a></li> | ||
<% end %> | ||
</ul> | ||
</div> | ||
<div class='col-md-3'> | ||
<h4 class="share">Contact us</h4> | ||
<h4 class="share">Contact Us</h4> | ||
<% link_to 'mailto:[email protected]', class: "share" do %> | ||
<i class='fas fa-envelope'></i> | ||
<% end %> | ||
<% link_to 'https://blog.datacite.org', class: "share" do %> | ||
<% link_to 'https://datacite.org/blog/', class: "share" do %> | ||
<i class='fas fa-blog'></i> | ||
<% end %> | ||
<% link_to 'https://twitter.com/datacite', class: "share" do %> | ||
<i class='fab fa-twitter'></i> | ||
<% end %> | ||
<% link_to 'https://github.com/datacite/datacite', class: "share" do %> | ||
<i class='fab fa-github'></i> | ||
<% end %> | ||
<% link_to 'https://www.youtube.com/channel/UCVsSDZhIN_WbnD_v5o9eB_A', class: "share" do %> | ||
<i class='fab fa-youtube'></i> | ||
<% link_to 'https://twitter.com/datacite', class: "share" do %> | ||
<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512" style="fill: #a3acb2;position: relative;bottom: -3;"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"></path></svg> | ||
<% end %> | ||
<a rel="me" class="share" href="https://openbiblio.social/@datacite"><i class='fab fa-mastodon'></i></a> | ||
<% link_to 'https://www.linkedin.com/company/datacite', class: "share" do %> | ||
<i class='fab fa-linkedin'></i> | ||
<% end %> | ||
<a rel="me" class="share" href="https://openbiblio.social/@datacite"><i class='fab fa-mastodon'></i></a> | ||
<% link_to 'https://www.youtube.com/@DataCiteChannel', class: "share" do %> | ||
<i class='fab fa-youtube'></i> | ||
<% end %> | ||
<ul class="share"> | ||
<% data.links.contact_links.each do |link| %> | ||
<li><%= link_to link.name, link.url %></a></li> | ||
|