-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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 #538 from MacOS/main
Add social media to docs
- Loading branch information
Showing
6 changed files
with
131 additions
and
2 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 |
---|---|---|
|
@@ -8,5 +8,9 @@ __pycache__/ | |
llmware.egg-info/ | ||
venv/ | ||
|
||
# Jekyll | ||
docs/_site/ | ||
|
||
|
||
# Mac | ||
.DS_Store/ |
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,33 @@ | ||
<ul class="list-style-none"> | ||
<li class="d-inline-block mr-1"> | ||
<a href="https://llmware.ai/">llmware</a> | ||
</li> | ||
<li class="d-inline-block mr-1"> | ||
by | ||
</li> | ||
<li class="d-inline-block mr-1"> | ||
<a href="https://www.aibloks.com/home">AI Bloks</a> | ||
</li> | ||
<li class="d-inline-block mr-1"> | ||
| | ||
</li> | ||
<li class="d-inline-block mr-1 hugging-face-li"> | ||
<a href="https://huggingface.co/llmware"><span><img src="assets/images/hf-logo.svg" alt="Hugging Face" class="hugging-face-logo"/></span></a> | ||
</li> | ||
<li class="d-inline-block mr-1"> | ||
<a href="https://www.youtube.com/@llmware"><i class="fa-brands fa-youtube"></i></a> | ||
</li> | ||
<li class="d-inline-block mr-1"> | ||
<a href="https://www.linkedin.com/company/aibloks/"><i class="fa-brands fa-linkedin"></i></a> | ||
</li> | ||
<li class="d-inline-block mr-1"> | ||
<a href="https://twitter.com/AiBloks"><i class="fa-brands fa-square-x-twitter"></i></a> | ||
</li> | ||
<li class="d-inline-block mr-1"> | ||
<a href="https://www.instagram.com/aibloks/"><i class="fa-brands fa-instagram"></i></a> | ||
</li> | ||
</ul> | ||
|
||
<p> | ||
© 2023-{{ "now" | date: "%Y" }} <a href="https://www.aibloks.com/home">AI Bloks</a> | ||
</p> |
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,57 @@ | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /> | ||
|
||
|
||
<style> | ||
ul li span { | ||
font-size: 3em; | ||
} | ||
|
||
.fa-youtube:hover { | ||
color: red; | ||
} | ||
|
||
/* | ||
Code taken from | ||
https://stackoverflow.com/questions/38507734/fontawesome-instagram-icon-colorized | ||
*/ | ||
.fa-instagram:hover { | ||
color: transparent; | ||
background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); | ||
background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); | ||
background-clip: text; | ||
-webkit-background-clip: text; | ||
} | ||
|
||
.fa-square-x-twitter:hover { | ||
color: black; | ||
} | ||
|
||
.fa-linkedin:hover { | ||
color: #0077B5; | ||
} | ||
|
||
.fa-discord:hover { | ||
color: white; | ||
background-color: #5865F2; | ||
border-radius: 5px; | ||
} | ||
|
||
.hugging-face-logo { | ||
height: 50px; | ||
width: 50px; | ||
padding-top: 5px; | ||
filter: hue-rotate(210deg); | ||
} | ||
|
||
footer ul li .hugging-face-logo { | ||
height: 15px; | ||
width: 15px; | ||
padding-top: 0px; | ||
padding: 0px; | ||
filter: hue-rotate(210deg); | ||
} | ||
|
||
ul li .hugging-face-logo:hover { | ||
filter: hue-rotate(0deg); | ||
} | ||
</style> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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