Skip to content

Commit

Permalink
Edit footer.
Browse files Browse the repository at this point in the history
  • Loading branch information
andreibancioiu authored Mar 29, 2024
1 parent 5682304 commit 33ef3cd
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
29 changes: 29 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: "en-US" }}">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

{% seo %}
<link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
{% include head-custom.html %}
</head>
<body>
<div class="container-lg px-3 my-5 markdown-body">
{% if site.title and site.title != page.title %}
<h1><a href="{{ "/" | absolute_url }}">{{ site.title }}</a></h1>
{% endif %}

{{ content }}

{% if site.github.private != true and site.github.license %}
<div class="footer border-top border-gray-light mt-5 pt-3 text-right text-gray">
This project is <a href="https://github.com/multiversx/mx-sdk-js-core">open source</a>.
</div>
{% endif %}
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js" integrity="sha256-lZaRhKri35AyJSypXXs4o6OPFTbTmUoltBbDCbdzegg=" crossorigin="anonymous"></script>
<script>anchors.add();</script>
</body>
</html>
7 changes: 7 additions & 0 deletions index.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
MultiversX SDK for interacting with the MultiversX blockchain (in general) and Smart Contracts (in particular).

For getting started with the SDKs, please follow the [**cookbook**](https://docs.multiversx.com/sdk-and-tools/sdk-js/sdk-js-cookbook/).

Below you can find a versioned auto-generated documentation:

- [sdk-core v12](./v12/index.md)
- [sdk-core v13](./v13/index.md)

0 comments on commit 33ef3cd

Please sign in to comment.