mirror of
https://github.com/mudler/LocalAI.git
synced 2025-05-05 02:02:54 +00:00
* docs: re-order sections * fix references * Add mixtral-instruct, tinyllama-chat, dolphin-2.5-mixtral-8x7b * Fix link * Minor corrections * fix: models is a StringSlice, not a String Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * WIP: switch docs theme * content * Fix GH link * enhancements * enhancements * Fixed how to link Signed-off-by: lunamidori5 <118759930+lunamidori5@users.noreply.github.com> * fixups * logo fix * more fixups * final touches --------- Signed-off-by: Ettore Di Giacinto <mudler@localai.io> Signed-off-by: lunamidori5 <118759930+lunamidori5@users.noreply.github.com> Co-authored-by: lunamidori5 <118759930+lunamidori5@users.noreply.github.com>
48 lines
2.6 KiB
HTML
48 lines
2.6 KiB
HTML
{{ $repoURL := slice .Site.Params.docs.repoURL }}
|
|
{{ $repoHostname := (urls.Parse (.Site.Params.docs.repoURL)).Hostname }}
|
|
{{ $filePath := replace .File.Path "\\" "/" }}
|
|
{{ $iconPath := "" }}
|
|
|
|
{{ if strings.Contains ($repoHostname | lower) "github" }}
|
|
{{ $repoURL = $repoURL | append "blob" (.Site.Params.docs.repoBranch | default "main") }}
|
|
{{ $iconPath = "images/social/github_icon.svg" }}
|
|
{{ else if strings.Contains ($repoHostname | lower) "gitlab" }}
|
|
{{ $repoURL = $repoURL | append "-/blob" (.Site.Params.docs.repoBranch | default "main") }}
|
|
{{ $iconPath = "images/social/gitlab_icon.svg" }}
|
|
{{ else if strings.Contains ($repoHostname | lower) "bitbucket" }}
|
|
{{ $repoURL = $repoURL | append "src" (.Site.Params.docs.repoBranch | default "master") }}
|
|
{{ $iconPath = "images/social/bitbucket_icon.svg" }}
|
|
{{ end }}
|
|
|
|
{{ $repoURL = $repoURL | append "docs/content" .Site.LanguagePrefix $filePath }}
|
|
{{ $repoURL = delimit $repoURL "/" }}
|
|
{{ $editPageURL := replaceRE "(https?://)|(/)+" "$1$2" $repoURL }}
|
|
|
|
<div class="gitinfo d-flex flex-wrap justify-content-between align-items-center opacity-85 {{ if or .Site.Params.docs.lastMod .Site.Params.docs.editPage -}}pt-3{{ else }}visually-hidden{{ end }}">
|
|
{{ if .Site.Params.docs.editPage | default false -}}
|
|
<div id="edit-this-page" class="mt-1">
|
|
<a href="{{ $editPageURL }}" alt="{{ .Title }}" rel="noopener noreferrer" target="_blank">
|
|
<!-- <span class="material-icons size-20 align-text-bottom text-primary">edit</span> -->
|
|
<span class="me-1 align-text-bottom">
|
|
{{ with resources.Get $iconPath }}
|
|
{{ .Content | safeHTML }}
|
|
{{ end }}
|
|
</span>
|
|
Edit this page
|
|
<!-- <span class="material-icons size-20 align-text-bottom text-primary">open_in_new</span> -->
|
|
</a>
|
|
</div>
|
|
{{ end }}
|
|
{{ if .Site.Params.docs.lastMod | default false -}}
|
|
<div id="last-modified" class="mt-1">
|
|
<p class="mb-0 fw-semibold">Last updated <span
|
|
{{ if .Site.Params.docs.lastModRelative | default true -}}id="relativetime"{{ else }}{{ end }}
|
|
data-authdate="{{ dateFormat "2006-01-02T15:04:05Z0700" .GitInfo.AuthorDate }}"
|
|
{{ if .Site.Params.docs.lastModRelative | default true -}}title="{{ dateFormat "02 Jan 2006, 15:04 MST" .GitInfo.AuthorDate }}"{{ else }}{{ end }}>
|
|
{{ dateFormat "02 Jan 2006, 15:04 MST" .GitInfo.AuthorDate }}
|
|
</span>. <span class="material-icons size-20 align-text-bottom opacity-75">history</span>
|
|
</p>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|