-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
155 lines (144 loc) · 4.81 KB
/
index.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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<title>Paolo Pedroso</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body data-new-gr-c-s-check-loaded="14.1080.0" data-gr-ext-installed="">
<header>
<div class="navcontainer">
<nav>
<ul>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li>*under contruction</li>
</ul>
</nav>
</div>
</header>
<h1 class="logo">paolo.</h1>
<!--Individual Projects-->
<div class="band">
<div class="item-1">
<a href="digital-art/are-you-real.html" class="card">
<img class="thumb" src="/assets/img/are-you-real-icon.png">
<article>
<h1>Cube: Are You Real?</h1>
<span>By Paolo</span>
</article>
</a>
</div>
<div class="item-2">
<a href="digital-art/bee-inspo-icon.html" class="card">
<img class="thumb" src="/assets/img/bee-inspo-icon.png">
<article>
<h1>Cube Wave</h1>
<span>By Paolo</span>
</article>
</a>
</div>
<div class="item-3">
<a href="digital-art/ready-to-print.html" class="card">
<img class="thumb" src="/assets/img/generative-poster-icon.png">
<article>
<h1>Ready to Print</h1>
<p></p>
<span>By Paolo, Forked from Lomz on Processing.js</span>
</article>
</a>
</div>
<div class="item-4">
<a href="digital-art/thinking-out-box.html" class="card">
<img class="thumb" src="/assets/img/thinking-outside-icon.png">
<article>
<h1>Outside The Box</h1>
<p></p>
<span>By Paolo</span>
</article>
</a>
</div>
<div class="item-5">
<a href="digital-art/generative-3d-plane.html" class="card">
<img class="thumb" src="/assets/img/generative-plane-icon.png">
<article>
<h1>3D Generative Plane</h1>
<p>(Work in Progress)</p>
<span>By Paolo</span>
</article>
</a>
</div>
<div class="item-6">
<a href="digital-art/perlin-noise.html" class="card">
<img class="thumb" src="/assets/img/perlin-noise-icon.png">
<article>
<h1>Perlin Noise</h1>
<span>Forked from Otis Chou from Processing.js</span>
</article>
</a>
</div>
<!--copy paste to add more
<div class="item-7">
<a href="art-7.html" class="card">
<img class="thumb" src="">
<article>
<h1>Title</h1>
<span>Author</span>
</article>
</a>
</div>
-->
</div>
<footer>
<div class="column">
<a name="contact"></a><div class="footer-row">
<a href="https://www.linkedin.com/in/paolo-pedroso-848791232/" target="_blank"><span>Linkedin</span></a>
<span> | </span>
<a href="https://github.com/paolopedroso" target="_blank"><span>Github</span></a>
<span> | </span>
<a href="mailto:ppedroso@ucsc.edu"><span>Email</span></a>
</div>
<div class="copy-rights">
<p>Paolo Pedroso 2022</p>
</div>
</div>
</footer>
<!-- Code injected by live-server -->
<script>
// <![CDATA[ <-- For SVG support
if ('WebSocket' in window) {
(function () {
function refreshCSS() {
var sheets = [].slice.call(document.getElementsByTagName("link"));
var head = document.getElementsByTagName("head")[0];
for (var i = 0; i < sheets.length; ++i) {
var elem = sheets[i];
var parent = elem.parentElement || head;
parent.removeChild(elem);
var rel = elem.rel;
if (elem.href && typeof rel != "string" || rel.length == 0 || rel.toLowerCase() == "stylesheet") {
var url = elem.href.replace(/(&|\?)_cacheOverride=\d+/, '');
elem.href = url + (url.indexOf('?') >= 0 ? '&' : '?') + '_cacheOverride=' + (new Date().valueOf());
}
parent.appendChild(elem);
}
}
var protocol = window.location.protocol === 'http:' ? 'ws://' : 'wss://';
var address = protocol + window.location.host + window.location.pathname + '/ws';
var socket = new WebSocket(address);
socket.onmessage = function (msg) {
if (msg.data == 'reload') window.location.reload();
else if (msg.data == 'refreshcss') refreshCSS();
};
if (sessionStorage && !sessionStorage.getItem('IsThisFirstTime_Log_From_LiveServer')) {
console.log('Live reload enabled.');
sessionStorage.setItem('IsThisFirstTime_Log_From_LiveServer', true);
}
})();
}
else {
console.error('Upgrade your browser. This Browser is NOT supported WebSocket for Live-Reloading.');
}
// ]]>
</script>
</body><grammarly-desktop-integration data-grammarly-shadow-root="true"></grammarly-desktop-integration>
</html>