-
Notifications
You must be signed in to change notification settings - Fork 0
/
tree.txt
93 lines (93 loc) · 3.15 KB
/
tree.txt
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
.
├── .github
│ └── workflows
│ └── deploy.yml
├── .vscode
│ ├── julie_portfolio.code-workspace
│ └── settings.json
├── _site
│ ├── about
│ │ ├── index.html
│ │ └── index.html.br
│ ├── archive
│ │ └── oldindex.zip
│ ├── assets
│ │ ├── Git-icon-white.svg
│ │ ├── Hibiscus.jpg
│ │ ├── Hibiscus.png
│ │ ├── Hibiscus.webp
...
│ ├── portfolio
│ │ ├── corolla_lp
│ │ └── nn-2024
│ ├── showcase
│ │ ├── hachijojima-sunset_watercolor
│ │ │ ├── index.html
│ │ │ └── index.html.br
...
│ │ ├── private
│ │ │ ├── fire-extinguisher_flyer
│ │ │ │ ├── index.html
│ │ │ │ └── index.html.br
│ │ │ ├── kanshin-breaker-shikyuu_flyer
│ │ │ │ ├── index.html
│ │ │ │ └── index.html.br...
│ │ ├── index.html
│ │ └── index.html.br
│ ├── feed.rss
│ ├── index.html
│ ├── index.html.br
│ ├── julie_cogley_jp_site.zip
│ ├── julie_cogley_jp_tree.html
│ ├── robots.txt
│ ├── sitemap.xml
│ ├── styles.css
│ ├── styles.css.br
│ └── styles.css.map
├── src
│ ├── _data
│ │ └── jp-holidays.json
│ ├── _includes
│ │ ├── layouts
│ │ │ └── base.vto
│ │ └── templates
│ │ ├── footer.vto
│ │ ├── ld-person.vto
│ │ └── nav.vto
│ ├── archive
│ │ └── oldindex.zip
│ ├── assets
│ │ ├── .DS_Store
│ │ ├── Git-icon-white.svg
│ │ ├── Hibiscus.jpg...
│ ├── showcase
│ │ ├── _data.yml
│ │ ├── fire-extinguisher_flyer.vto
│ │ ├── hachijojima-sunset_watercolor.vto
│ │ ├── index.vto
│ │ ├── kanshin-breaker-shikyuu_flyer.vto
│ │ ├── kanshin-breaker_flyer.vto
│ │ ├── maruntain-top_tshirt.vto
│ │ ├── nn-2024.vto
│ │ ├── sea-turtle_painting.vto
│ │ ├── whitening_flyer.vto
│ │ └── youtube-gadget_flyer.vto
│ ├── static
│ │ └── portfolio
│ │ ├── corolla_lp
│ │ └── nn-2024
│ ├── _data.ts
│ ├── _data.yml
│ ├── about.vto
│ ├── index.vto
│ └── styles.css
├── .DS_Store
├── .editorconfig
├── .gitattributes
├── .gitignore
├── README.md
├── _cms.ts
├── _config.ts
├── deno.json
├── deno.lock
└── serve.ts