How can I add images to any page or post? #98
-
This is my web https://diegoalarc.github.io/tabs/about.html I would like to include images but I can't do that in the traditional markdown way. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi, check this page These are common for all pages and blog posts. Left aligned picture
Centered picture
Picture pathsfor picture paths you have 2 options.
optional features
|
Beta Was this translation helpful? Give feedback.
-
Now is working! Thanks for the help. |
Beta Was this translation helpful? Give feedback.
Hi, check this page
https://github.com/MrGreensWorkshop/MrGreen-JekyllTheme/blob/main/_posts/2022-02-10-Examples.markdown
These are common for all pages and blog posts.
Left aligned picture
![such a lovely place](:hello.jpg)
Centered picture
![such a lovely place](:hello.jpg){:data-align="center"}
Picture paths
for picture paths you have 2 options.
/assets/img/<layout>/
)![such a lovely place](:hello.jpg)
(example for any page)/assets/img/about/hello.jpg
![such a lovely place](/assets/img/about/hello.jpg)
(example for about page)/assets/img/about/hello.jpg
option…