Adding the images and a new section #1
:main into main This reverts commit 83ce18160f.
@ -15,3 +15,4 @@ pnpm-debug.log*
.direnv/
.DS_Store
src/content/docs/.obsidian/
we should use
.obsidian/
instead, so that all directories are affected.
@ -4,3 +4,3 @@
---
[img:buFOSS.png] Welcome to Boğaziçi University Free Software and Open Knowledge Society! We will help you understand, use and contribute to free software and open knowledge resources, with specific focus on Boğaziçi. [Read more about us here.](https://bufoss.org)
<img src="https://guide.bufoss.org/_astro/bufoss.V7RqNp1f_19DKCs.svg" width="200" style="margin: 10px auto 20px; display: block;">
this src is bad practice, as it's automatically generated and could change in the future.
the best practice would be to:
- make this file MDX (
01-welcome-to-bufoss.mdx) instead, - add the following line after line 4:
import bufoss from '../../../assets/bufoss.svg'; - replace the
srcattribute withsrc={bufoss.src}.
if this looks like too much work, we can cheat and just use src="https://guide.bufoss.org/favicon.svg" instead since it's the same image but static. but again, best practices are nicer.
one other thing about this line, is that i don't think the style attribute is necessary. unless you specifically want that much amount of top and bottom margin, we should use this pattern to center horizontally:
<div align="center">
<img src="something" width="something" />
</div>
also, ideally, we want to include an alt text for every image, even if it's not that detailed. something like alt="buFOSS logo" would be enough. if you believe it's better to not provide in this context, you could do alt="" instead.
@ -2,12 +2,13 @@
title: "Why Does FOSS Matter to a Student"
description: ""
---
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Free_and_open-source_software_logo_%282009%29.svg/960px-Free_and_open-source_software_logo_%282009%29.svg.png" width="200" style="margin: 10px auto 20px; display: block;" alt="Logo of FOSS">
this image is natively a svg but you're using a converted png. src="https://upload.wikimedia.org/wikipedia/commons/3/31/Free_and_open-source_software_logo_%282009%29.svg" would have been better for scaling and all.
my points about aligning applies here as well :3
@ -2,8 +2,9 @@
title: "The FOSS Landscape Beyond Software"
description: "What else is there?"
---
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/78/Definition_of_Free_Cultural_Works_logo_notext.svg/250px-Definition_of_Free_Cultural_Works_logo_notext.svg.png" width="200" style="margin: 10px auto 20px; display: block;" alt="The Logo of Definition of Free Cultural Works">
this one is also an svg originally, so src="https://upload.wikimedia.org/wikipedia/commons/7/78/Definition_of_Free_Cultural_Works_logo_notext.svg" would have been better.
my points about aligning applies here as well :3
No due date set.
No dependencies set.
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?