-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
991518f
commit 5e4caf6
Showing
4 changed files
with
18 additions
and
7 deletions.
There are no files selected for viewing
9 changes: 5 additions & 4 deletions
9
docs/source/_templates/layout.html → docs/source/_templates/base.html
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{% extends "!layout.html" %} | ||
{% extends "!base.html" %} | ||
|
||
{% block footer %} | ||
{{ super() }} | ||
{% block scripts %} | ||
{{super()}} | ||
<!-- Cloudflare Web Analytics --><script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "b5047b826dff4e4db4b9193bb47eec37"}'></script><!-- End Cloudflare Web Analytics --> | ||
{% endblock %} | ||
{% endblock %} | ||
|
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{% extends "!page.html" %} | ||
|
||
{% block content %} | ||
<!-- only if config release version is 'latest' --> | ||
{% if release == 'latest' %} | ||
<div class="latest-note"> You are reading the <i>latest</i> version of the documentation. Functionality described here, is only available in the latest version of the LMQL. </div> | ||
{% endif %} | ||
{{super()}} | ||
{% endblock %} |
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 |
---|---|---|
|
@@ -79,5 +79,5 @@ | |
"title": "Community", | ||
"url": "https://discord.gg/7eJP4fcyNT" | ||
} | ||
], | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Welcome To LMQL | ||
=================================== | ||
|
||
.. raw:: html | ||
|
||
<div class="subtitle"><img class="inline-logo" src="_static/images/lmql.svg"/> LMQL is a programming language for large language model interaction.</div> | ||
|
@@ -137,3 +137,4 @@ To learn more about LMQL, select one of the following sections or navigate the d | |
Discord <https://discord.gg/7eJP4fcyNT> | ||
GitHub Issues <https://github.com/eth-sri/lmql/issues> | ||
E-Mail <mailto:[email protected]> | ||
|