-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathart.html
62 lines (57 loc) · 1.9 KB
/
art.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
layout: default
watercolors:
- image_path: assets/images/art/watercolor/toilet_paper.jpg
title: Toilet Paper (Watercolor)
link: toilet_paper.html
- image_path: assets/images/art/watercolor/security_key.png
title: Security Key (Watercolor)
- image_path: assets/images/art/watercolor/doogler.jpeg
title: Doogler (Watercolor)
graphic_designs:
- image_path: assets/images/art/graphic_design/cs_flyer.png
title: Comptuer Science Club (Graphic Design)
- image_path: assets/images/art/graphic_design/magazine.png
title: Magazine Spread (Graphic Design)
- image_path: assets/images/art/graphic_design/skateboard.png
title: Skateboard (Graphic Design)
instagram_spreads:
- image_path: assets/images/art/graphic_design/instagram_spread1.png
title: Instagram Spread (Graphic Design)
---
<h1>art</h1>
<h2>vlogging and video editing</h2>
<p>In 2022, I participated in Vlogmas (vlogging everyday from December 1 - December 25). <a href="https://www.youtube.com/playlist?list=PL6LnQ7HFo0L4noe2QS_kljeBFfLrA8YnF">View the playlist.</a></p>
<h2>graphic design</h2>
Click on an image to open it in a new page.
<hr>
<ul class="photo-gallery">
{% for image in page.graphic_designs %}
<a href="{{ image.image_path }}">
<img src="{{ image.image_path }}" alt="{{ image.title}}"/>
</a>
{% endfor %}
</ul>
<h3>instagram spreads</h3>
<ul class="photo-gallery">
{% for image in page.instagram_spreads %}
<a href="{{ image.image_path }}">
<img src="{{ image.image_path }}" alt="{{ image.title}}"/>
</a>
{% endfor %}
</ul>
<h3>coursework</h3>
<details>
<summary>Foothill College</summary>
✅ GID 33 GRAPHIC DESIGN STUDIO I<br>
</details>
<br>
<hr>
<h2>watercolor</h2>
<ul class="photo-gallery">
{% for image in page.watercolors %}
<a href="{{ image.image_path }}">
<img src="{{ image.image_path }}" alt="{{ image.title}}"/>
</a>
{% endfor %}
</ul>