Skip to content

Commit

Permalink
Live demo
Browse files Browse the repository at this point in the history
emilyyleung committed Sep 11, 2021
1 parent 5c3732e commit 7142aa1
Showing 47 changed files with 455 additions and 320 deletions.
2 changes: 1 addition & 1 deletion .eleventy.js
Original file line number Diff line number Diff line change
@@ -13,6 +13,6 @@ module.exports = function (eleventyConfig) {
input: "src",
output: "public"
},
pathPrefix: "/"
pathPrefix: "/eleventy-bragdoc/"
}
}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -6,6 +6,8 @@ Built using:
- [11ty](https://www.11ty.dev/)
- Vanilla JS and CSS

Built on top of the timeline by [venkatesh](https://codepen.io/venkat06) - [codepen here](https://codepen.io/venkat06/pen/yLBeVqZ?editors=0100)

## Dependencies
Install dependencies by running `npm install`

132 changes: 132 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -6,7 +6,9 @@
"dependencies": {
"@11ty/eleventy": "^0.12.1"
},
"devDependencies": {},
"devDependencies": {
"gh-pages": "^3.2.3"
},
"scripts": {
"start": "eleventy --serve",
"build": "eleventy",
55 changes: 51 additions & 4 deletions public/css/styles.css
Original file line number Diff line number Diff line change
@@ -14,6 +14,8 @@
--quote-block-edge: rgba(255, 165, 0, 0.5);
--quote-block-text: #676a6c;
--table-border: #676a6c;
--footer: #BDBDBD;
--tag: #BDBDBD;
}

html[data-theme="dark"] {
@@ -32,6 +34,8 @@ html[data-theme="dark"] {
--quote-block-edge: rgb(255, 165, 0);
--quote-block-text: rgba(255, 165, 0,0.5);
--table-border: #999999;
--footer: rgba(255,255,255,0.3);
--tag: rgba(255,255,255,0.3);
}

body {
@@ -40,6 +44,17 @@ body {
color: var(--text);
overflow-x: hidden;
background-color: var(--background);
margin: 0;
height: 100vh;
}

footer {
margin: 0 auto;
max-width: 500px;
padding-bottom: 1em;
text-align: center;
color: var(--footer);
padding-top: 2em;
}

/* Bragdoc Logo */
@@ -54,7 +69,11 @@ body {
/* Bragdoc Body */

.bragdoc__section {
padding-bottom: 5em;
height: 100%;
display: grid;
grid-template-rows: auto 1fr auto;
margin: 0;
padding: 0;
}

/* Bragdoc User Profile */
@@ -81,8 +100,12 @@ body {

.bragdoc__container {
max-width: 800px;
margin: 0 auto;
padding-bottom: 10rem;

/* Centre the Bragdoc*/
/*margin: 0 auto; */
margin: 0 0 0 30em;

padding-bottom: 15em;
}

.bragdoc__profile-role {
@@ -163,7 +186,19 @@ body {

/* Make it responsive */

@media only screen and (max-width: 880px) {
@media only screen and (max-width: 1400px) {

.bragdoc__container {
/* Centre the Bragdoc*/
margin: 0 auto;
}

.bragdoc__entry-block h2 {
font-size: 1.2em;
}
}

@media only screen and (max-width: 800px) {

.bragdoc__container {
padding-left: 2em;
@@ -255,3 +290,15 @@ th {
border-left: 1px solid var(--table-border);
border-right: 1px solid var(--table-border);
}

.bragdoc__taglist {
margin-left: 1em;
padding: 1em;
}

.bragdoc__taglist > * {
border: 1px solid var(--tag);
padding: 0.25em 0.5em 0.25em 0.5em;
border-radius: 0.5em;
margin-right: 1em;
}
6 changes: 6 additions & 0 deletions public/images/favicon_io/about.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
This favicon was generated using the following font:

- Font Title: Open Sans
- Font Author: Digitized data copyright 2010-2011, Google Corporation.
- Font Source: http://fonts.gstatic.com/s/opensans/v23/mem5YaGs126MiZpBA-UN8rs-VeJoCqeDjg.ttf
- Font License: Apache License, version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html))
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/favicon_io/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/favicon_io/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/favicon_io/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/favicon_io/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions public/images/favicon_io/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
Binary file added public/images/profile_picture.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
227 changes: 108 additions & 119 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -1,28 +1,45 @@
<!DOCTYPE html>
<html lang="en" data-theme="light">
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Eleventy Bragdoc</title>
<link rel="stylesheet" href="/css/styles.css">
<title>11ty x Bragdocs</title>
<link rel="stylesheet" href="/eleventy-bragdoc/css/styles.css">

<link rel="apple-touch-icon" sizes="180x180" href="/eleventy-bragdoc/images/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/eleventy-bragdoc/images/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/eleventy-bragdoc/images/favicon_io/favicon-16x16.png">
<link rel="manifest" href="/eleventy-bragdoc/images/favicon_io/site.webmanifest">

<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QHTYKWLREY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-QHTYKWLREY');
</script>
</head>
<body>

<h1 class="bragdoc__header">Eleventy x Bragdocs</h1>

<div class="bragdoc__section" id="bragdoc__section">

<h1 class="bragdoc__header">11ty x Bragdocs</h1>

<div class="bragdoc__container">

<div class="bragdoc__profile">
<img class="bragdoc__photo" src="https://www.bragdocs.com/rails/active_storage/representations/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBBZWM9IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--2b9ac2ffdf2849716d6d7949133cb06f36e7b7ab/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdCam9MY21WemFYcGxTU0lOTVRJNGVERXlPQ0VHT2daRlZBPT0iLCJleHAiOm51bGwsInB1ciI6InZhcmlhdGlvbiJ9fQ==--9d3c73224951bb0df8d39da8761829336c1fd385/2021-01-14-113239261.jpg">
<img class="bragdoc__photo" src="/eleventy-bragdoc/images/profile_picture.jpg">
<h1 class="bragdoc__name">Emily Y Leung</h1>
<div class="role">Computational Designer</div>
</div>





<div class="bragdoc__entry">
<div class="bragdoc__entry-milestone"></div>

@@ -38,8 +55,15 @@ <h2 class="bragdoc__entry-title"><span class="bragdoc__icon">🎓</span> Graduat
</div>
</div>

<div class="bragdoc__taglist">

<span># Education</span>
</div>

</div>



<div class="bragdoc__entry">
<div class="bragdoc__entry-milestone"></div>

@@ -51,106 +75,19 @@ <h2 class="bragdoc__entry-title"><span class="bragdoc__icon">🎓</span> Graduat
<h2 class="bragdoc__entry-title"><span class="bragdoc__icon"></span> Graduate Designer</h2>
<div class="bragdoc__entry-content">
<p>Cox Architecture</p>
<p>testing</p>
<ul>
<li>print this</li>
<li>another thought
<ul>
<li>sub thought on the first
<ul>
<li>sub thought on the first
<ul>
<li>sub thought on the first</li>
</ul>
</li>
</ul>
</li>
<li>sub thought on the first</li>
</ul>
</li>
</ul>
<table>
<thead>
<tr>
<th>Tables</th>
<th>Are</th>
<th>Cool</th>
<th>Tables</th>
<th>Tables</th>
<th>Tables</th>
<th>Are</th>
<th>Cool</th>
<th>Tables</th>
<th>Tables</th>
</tr>
</thead>
<tbody>
<tr>
<td>col 3 is</td>
<td>right-alignedasdsasd asd a asd asd asd as sd as adasf asd asd</td>
<td>$1600</td>
<td>$1600</td>
<td>col 3 is</td>
<td>col 3 is</td>
<td>right-alignedasdsasd asd a asd asd asd as sd as adasf asd asd</td>
<td>$1600</td>
<td>$1600</td>
<td>col 3 is</td>
</tr>
<tr>
<td>col 2 is</td>
<td>centered</td>
<td>$12</td>
<td>$12</td>
<td>col 2 is</td>
<td>col 2 is</td>
<td>centered</td>
<td>$12</td>
<td>$12</td>
<td>col 2 is</td>
</tr>
<tr>
<td>zebra stripes</td>
<td>are neat</td>
<td>$1</td>
<td>$1</td>
<td>zebra stripes</td>
<td>zebra stripes</td>
<td>are neat</td>
<td>$1</td>
<td>$1</td>
<td>zebra stripes</td>
</tr>
</tbody>
</table>
<p>hello world</p>
<table>
<thead>
<tr>
<th>Markdown</th>
<th>Less</th>
<th>Pretty</th>
</tr>
</thead>
<tbody>
<tr>
<td><em>Still</em></td>
<td><code>renders</code></td>
<td><strong>nicely</strong></td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
</tbody>
</table>

</div>
</div>

<div class="bragdoc__taglist">

<span># Career</span>
</div>

</div>



<div class="bragdoc__entry">
<div class="bragdoc__entry-milestone"></div>

@@ -161,16 +98,24 @@ <h2 class="bragdoc__entry-title"><span class="bragdoc__icon">⚡</span> Graduate
<br/>
<h2 class="bragdoc__entry-title"><span class="bragdoc__icon">📕</span> CAADRIA 2019 - Intelligent &amp; Informed</h2>
<div class="bragdoc__entry-content">
<p>Victoria University Wellington, Wellington, New Zealand
Faculty of Architecture and Design</p>
<p>Session 4D: Building / City / Region Information Modelling / Management 3
Redback BIM: Developing a Browser-based Modelling Application Software Taxonomy</p>
<p><em>April 15-18</em></p>
<p><strong>Victoria University Wellington, Wellington, New Zealand</strong></p>
<p><strong>Faculty of Architecture and Design</strong></p>
<p>Session 4D: Building / City / Region Information Modelling / Management 3</p>
<p><a target="_blank" href="http://papers.cumincad.org/cgi-bin/works/paper/caadria2019_473">Redback BIM: Developing a Browser-based Modelling Application Software Taxonomy</a></p>

</div>
</div>

<div class="bragdoc__taglist">

<span># Education</span>
</div>

</div>



<div class="bragdoc__entry">
<div class="bragdoc__entry-milestone"></div>

@@ -181,16 +126,23 @@ <h2 class="bragdoc__entry-title"><span class="bragdoc__icon">📕</span> CAADRIA
<br/>
<h2 class="bragdoc__entry-title"><span class="bragdoc__icon">📕</span> CAADRIA 2018 - Learning, Prototyping &amp; Adapting</h2>
<div class="bragdoc__entry-content">
<p>May 17-19</p>
<p>Tsinghua University &amp; DADA, Beijing, China
School of Architecture</p>
<p>Redback BIM: Developing 'De-Localised' Open-Source Architecture-Centric Tools</p>
<p><em>May 17-19</em></p>
<p><strong>Tsinghua University &amp; DADA, Beijing, China</strong></p>
<p><strong>School of Architecture</strong></p>
<p><a target="_blank" href="http://papers.cumincad.org/cgi-bin/works/paper/caadria2018_122">Redback BIM: Developing 'De-Localised' Open-Source Architecture-Centric Tools</a></p>

</div>
</div>

<div class="bragdoc__taglist">

<span># Education</span>
</div>

</div>



<div class="bragdoc__entry">
<div class="bragdoc__entry-milestone"></div>

@@ -202,13 +154,43 @@ <h2 class="bragdoc__entry-title"><span class="bragdoc__icon">📕</span> CAADRIA
<h2 class="bragdoc__entry-title"><span class="bragdoc__icon"></span> Student Designer</h2>
<div class="bragdoc__entry-content">
<p>Cox Architecture</p>
<p><img src="https://images.unsplash.com/photo-1631218274727-6210a6bae154?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&amp;ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=993&amp;q=80" alt="test"></p>

</div>
</div>

<div class="bragdoc__taglist">

<span># Career</span>
</div>

</div>



<div class="bragdoc__entry">
<div class="bragdoc__entry-milestone"></div>

<div class="bragdoc__entry-block">
<span class="bragdoc__entry-date">
February 26th 2018
</span>
<br/>
<h2 class="bragdoc__entry-title"><span class="bragdoc__icon"></span> Bachelor of Computational Design (Honours)</h2>
<div class="bragdoc__entry-content">
<p>UNSW - Faculty of Built Environment</p>

</div>
</div>

<div class="bragdoc__taglist">

<span># Education</span>
</div>

</div>



<div class="bragdoc__entry">
<div class="bragdoc__entry-milestone"></div>

@@ -219,22 +201,21 @@ <h2 class="bragdoc__entry-title"><span class="bragdoc__icon">⚡</span> Student
<br/>
<h2 class="bragdoc__entry-title"><span class="bragdoc__icon"></span> Sydney Opera Bar VIP Centerpiece for &#39;The Sydney Opera House - The Opera&#39; 2016 Event</h2>
<div class="bragdoc__entry-content">
<h1>UNSW partners with Opera Australia on Eighth Wonder</h1>
<h2>subheading</h2>
<blockquote>
<p>this is a quote aasds asd asd alsh kasdkajshd kauhsd akushd kauhs kuasd aksh kuays iuasd lajsh dklahf iasdf isad alsd alisyd boafaljsh akusgd iausdl jalsid aosd alks oaiysdoahsd lahsod ;aoejfoslygwbkashdoa8shd lasdao8shd</p>
<p><strong>- by someone</strong></p>
</blockquote>
<pre><code>print(&quot;hello world&quot;)
</code></pre>
<p><a href="https://newsroom.unsw.edu.au/news/art-architecture-design/unsw-partners-opera-australia-eighth-wonder">UNSW Partners</a></p>
<p>https://www.dezeen.com/2020/12/23/landscape-industrial-design-unsw-sydney-school-show/kdjhahttps://www.dezeen.com/2020/12/23/landscape-industrial-design-unsw-sydney-school-show/kdjha</p>
<p><a target="_blank" href="https://newsroom.unsw.edu.au/news/art-architecture-design/unsw-partners-opera-australia-eighth-wonder">UNSW partners with Opera Australia on Eighth Wonder</a></p>

</div>
</div>

<div class="bragdoc__taglist">

<span># Education</span>
<span># Project</span>
</div>

</div>



<div class="bragdoc__entry">
<div class="bragdoc__entry-milestone"></div>

@@ -250,10 +231,18 @@ <h2 class="bragdoc__entry-title"><span class="bragdoc__icon">✏</span> Bachelor
</div>
</div>

<div class="bragdoc__taglist">

<span># Education</span>
</div>

</div>

</div>

<footer>Made with ♥ by Emily Y Leung</footer>

</div>

</body>
</html>
File renamed without changes.
8 changes: 4 additions & 4 deletions public/posts/CAADRIA 2018/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<p>May 17-19</p>
<p>Tsinghua University &amp; DADA, Beijing, China
School of Architecture</p>
<p>Redback BIM: Developing 'De-Localised' Open-Source Architecture-Centric Tools</p>
<p><em>May 17-19</em></p>
<p><strong>Tsinghua University &amp; DADA, Beijing, China</strong></p>
<p><strong>School of Architecture</strong></p>
<p><a target="_blank" href="http://papers.cumincad.org/cgi-bin/works/paper/caadria2018_122">Redback BIM: Developing 'De-Localised' Open-Source Architecture-Centric Tools</a></p>
4 changes: 0 additions & 4 deletions public/posts/CAADRIA 2019 - Copy/index.html

This file was deleted.

9 changes: 5 additions & 4 deletions public/posts/CAADRIA 2019/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<p>Victoria University Wellington, Wellington, New Zealand
Faculty of Architecture and Design</p>
<p>Session 4D: Building / City / Region Information Modelling / Management 3
Redback BIM: Developing a Browser-based Modelling Application Software Taxonomy</p>
<p><em>April 15-18</em></p>
<p><strong>Victoria University Wellington, Wellington, New Zealand</strong></p>
<p><strong>Faculty of Architecture and Design</strong></p>
<p>Session 4D: Building / City / Region Information Modelling / Management 3</p>
<p><a target="_blank" href="http://papers.cumincad.org/cgi-bin/works/paper/caadria2019_473">Redback BIM: Developing a Browser-based Modelling Application Software Taxonomy</a></p>
6 changes: 0 additions & 6 deletions public/posts/Graduate Designer - Copy/index.html

This file was deleted.

94 changes: 0 additions & 94 deletions public/posts/Graduate Designer/index.html
Original file line number Diff line number Diff line change
@@ -1,95 +1 @@
<p>Cox Architecture</p>
<p>testing</p>
<ul>
<li>print this</li>
<li>another thought
<ul>
<li>sub thought on the first
<ul>
<li>sub thought on the first
<ul>
<li>sub thought on the first</li>
</ul>
</li>
</ul>
</li>
<li>sub thought on the first</li>
</ul>
</li>
</ul>
<table>
<thead>
<tr>
<th>Tables</th>
<th>Are</th>
<th>Cool</th>
<th>Tables</th>
<th>Tables</th>
<th>Tables</th>
<th>Are</th>
<th>Cool</th>
<th>Tables</th>
<th>Tables</th>
</tr>
</thead>
<tbody>
<tr>
<td>col 3 is</td>
<td>right-alignedasdsasd asd a asd asd asd as sd as adasf asd asd</td>
<td>$1600</td>
<td>$1600</td>
<td>col 3 is</td>
<td>col 3 is</td>
<td>right-alignedasdsasd asd a asd asd asd as sd as adasf asd asd</td>
<td>$1600</td>
<td>$1600</td>
<td>col 3 is</td>
</tr>
<tr>
<td>col 2 is</td>
<td>centered</td>
<td>$12</td>
<td>$12</td>
<td>col 2 is</td>
<td>col 2 is</td>
<td>centered</td>
<td>$12</td>
<td>$12</td>
<td>col 2 is</td>
</tr>
<tr>
<td>zebra stripes</td>
<td>are neat</td>
<td>$1</td>
<td>$1</td>
<td>zebra stripes</td>
<td>zebra stripes</td>
<td>are neat</td>
<td>$1</td>
<td>$1</td>
<td>zebra stripes</td>
</tr>
</tbody>
</table>
<p>hello world</p>
<table>
<thead>
<tr>
<th>Markdown</th>
<th>Less</th>
<th>Pretty</th>
</tr>
</thead>
<tbody>
<tr>
<td><em>Still</em></td>
<td><code>renders</code></td>
<td><strong>nicely</strong></td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
</tbody>
</table>
1 change: 0 additions & 1 deletion public/posts/Graduation - Copy/index.html

This file was deleted.

11 changes: 1 addition & 10 deletions public/posts/SOBVIP/index.html
Original file line number Diff line number Diff line change
@@ -1,10 +1 @@
<h1>UNSW partners with Opera Australia on Eighth Wonder</h1>
<h2>subheading</h2>
<blockquote>
<p>this is a quote aasds asd asd alsh kasdkajshd kauhsd akushd kauhs kuasd aksh kuays iuasd lajsh dklahf iasdf isad alsd alisyd boafaljsh akusgd iausdl jalsid aosd alks oaiysdoahsd lahsod ;aoejfoslygwbkashdoa8shd lasdao8shd</p>
<p><strong>- by someone</strong></p>
</blockquote>
<pre><code>print(&quot;hello world&quot;)
</code></pre>
<p><a href="https://newsroom.unsw.edu.au/news/art-architecture-design/unsw-partners-opera-australia-eighth-wonder">UNSW Partners</a></p>
<p>https://www.dezeen.com/2020/12/23/landscape-industrial-design-unsw-sydney-school-show/kdjhahttps://www.dezeen.com/2020/12/23/landscape-industrial-design-unsw-sydney-school-show/kdjha</p>
<p><a target="_blank" href="https://newsroom.unsw.edu.au/news/art-architecture-design/unsw-partners-opera-australia-eighth-wonder">UNSW partners with Opera Australia on Eighth Wonder</a></p>
1 change: 0 additions & 1 deletion public/posts/Student Designer/index.html
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
<p>Cox Architecture</p>
<p><img src="https://images.unsplash.com/photo-1631218274727-6210a6bae154?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&amp;ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=993&amp;q=80" alt="test"></p>
17 changes: 16 additions & 1 deletion src/_includes/layouts/base.njk
Original file line number Diff line number Diff line change
@@ -1,11 +1,26 @@
<!DOCTYPE html>
<html lang="en" data-theme="light">
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>{{ title }}</title>
<link rel="stylesheet" href="{{ '/css/styles.css' | url }}">

<link rel="apple-touch-icon" sizes="180x180" href="{{ '/images/favicon_io/apple-touch-icon.png' | url }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ '/images/favicon_io/favicon-32x32.png' | url }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ '/images/favicon_io/favicon-16x16.png' | url }}">
<link rel="manifest" href="{{ '/images/favicon_io/site.webmanifest' | url }}">

<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QHTYKWLREY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QHTYKWLREY');
</script>
</head>
<body>
{{ content | safe }}
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
---
layout: layouts/base.njk
title: home
---

{% include 'partials/site-head.html' %}

<div class="bragdoc__section" id="bragdoc__section">

{% include 'partials/site-head.html' %}

<div class="bragdoc__container">

<div class="bragdoc__profile">
<img class="bragdoc__photo" src="https://www.bragdocs.com/rails/active_storage/representations/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBBZWM9IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--2b9ac2ffdf2849716d6d7949133cb06f36e7b7ab/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdCam9MY21WemFYcGxTU0lOTVRJNGVERXlPQ0VHT2daRlZBPT0iLCJleHAiOm51bGwsInB1ciI6InZhcmlhdGlvbiJ9fQ==--9d3c73224951bb0df8d39da8761829336c1fd385/2021-01-14-113239261.jpg">
<img class="bragdoc__photo" src="{{ '/images/profile_picture.jpg' | url }}">
<h1 class="bragdoc__name">Emily Y Leung</h1>
<div class="role">Computational Designer</div>
</div>

{% for post in collections.posts | reverse %}

{% if post.data.public %}

<div class="bragdoc__entry">
<div class="bragdoc__entry-milestone"></div>

@@ -31,10 +32,20 @@ title: home
</div>
</div>

<div class="bragdoc__taglist">
{% for tag in post.data.categories %}
<span># {{tag}}</span>
{%- endfor %}
</div>

</div>

{%- endif %}

{%- endfor %}

</div>

</div>
{% include 'partials/site-foot.html' %}

</div>
1 change: 1 addition & 0 deletions src/_includes/partials/site-foot.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<footer>Made with ♥ by Emily Y Leung</footer>
2 changes: 1 addition & 1 deletion src/_includes/partials/site-head.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<h1 class="bragdoc__header">Eleventy x Bragdocs</h1>
<h1 class="bragdoc__header">11ty x Bragdocs</h1>
55 changes: 51 additions & 4 deletions src/css/styles.css
Original file line number Diff line number Diff line change
@@ -14,6 +14,8 @@
--quote-block-edge: rgba(255, 165, 0, 0.5);
--quote-block-text: #676a6c;
--table-border: #676a6c;
--footer: #BDBDBD;
--tag: #BDBDBD;
}

html[data-theme="dark"] {
@@ -32,6 +34,8 @@ html[data-theme="dark"] {
--quote-block-edge: rgb(255, 165, 0);
--quote-block-text: rgba(255, 165, 0,0.5);
--table-border: #999999;
--footer: rgba(255,255,255,0.3);
--tag: rgba(255,255,255,0.3);
}

body {
@@ -40,6 +44,17 @@ body {
color: var(--text);
overflow-x: hidden;
background-color: var(--background);
margin: 0;
height: 100vh;
}

footer {
margin: 0 auto;
max-width: 500px;
padding-bottom: 1em;
text-align: center;
color: var(--footer);
padding-top: 2em;
}

/* Bragdoc Logo */
@@ -54,7 +69,11 @@ body {
/* Bragdoc Body */

.bragdoc__section {
padding-bottom: 5em;
height: 100%;
display: grid;
grid-template-rows: auto 1fr auto;
margin: 0;
padding: 0;
}

/* Bragdoc User Profile */
@@ -81,8 +100,12 @@ body {

.bragdoc__container {
max-width: 800px;
margin: 0 auto;
padding-bottom: 10rem;

/* Centre the Bragdoc*/
/*margin: 0 auto; */
margin: 0 0 0 30em;

padding-bottom: 15em;
}

.bragdoc__profile-role {
@@ -163,7 +186,19 @@ body {

/* Make it responsive */

@media only screen and (max-width: 880px) {
@media only screen and (max-width: 1400px) {

.bragdoc__container {
/* Centre the Bragdoc*/
margin: 0 auto;
}

.bragdoc__entry-block h2 {
font-size: 1.2em;
}
}

@media only screen and (max-width: 800px) {

.bragdoc__container {
padding-left: 2em;
@@ -255,3 +290,15 @@ th {
border-left: 1px solid var(--table-border);
border-right: 1px solid var(--table-border);
}

.bragdoc__taglist {
margin-left: 1em;
padding: 1em;
}

.bragdoc__taglist > * {
border: 1px solid var(--tag);
padding: 0.25em 0.5em 0.25em 0.5em;
border-radius: 0.5em;
margin-right: 1em;
}
6 changes: 6 additions & 0 deletions src/images/favicon_io/about.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
This favicon was generated using the following font:

- Font Title: Open Sans
- Font Author: Digitized data copyright 2010-2011, Google Corporation.
- Font Source: http://fonts.gstatic.com/s/opensans/v23/mem5YaGs126MiZpBA-UN8rs-VeJoCqeDjg.ttf
- Font License: Apache License, version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html))
Binary file added src/images/favicon_io/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/favicon_io/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/favicon_io/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/favicon_io/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/favicon_io/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions src/images/favicon_io/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
Binary file added src/images/profile_picture.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
title: "Eleventy Bragdoc"
layout: "layouts/home.njk"
title: "11ty x Bragdocs"
layout: "layouts/bragdoc.njk"
---
10 changes: 10 additions & 0 deletions src/posts/Bach of CoDe Hons.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
date: 2018-02-26
name: Bachelor of Computational Design (Honours)
icon:
public: True
categories:
- Education
---

UNSW - Faculty of Built Environment
4 changes: 3 additions & 1 deletion src/posts/Bach of CoDe.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
---
date: 2015-03-02
name: Bachelor of Computational Design
tag: Education
icon:
public: True
categories:
- Education
---

UNSW - Faculty of Built Environment
13 changes: 8 additions & 5 deletions src/posts/CAADRIA 2018.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
---
date: 2019-04-15
name: CAADRIA 2018 - Learning, Prototyping & Adapting
tag: Education
icon: 📕
public: True
categories:
- Education
---

May 17-19
*May 17-19*

Tsinghua University & DADA, Beijing, China
School of Architecture
**Tsinghua University & DADA, Beijing, China**

Redback BIM: Developing 'De-Localised' Open-Source Architecture-Centric Tools
**School of Architecture**

<a target="_blank" href="http://papers.cumincad.org/cgi-bin/works/paper/caadria2018_122">Redback BIM: Developing 'De-Localised' Open-Source Architecture-Centric Tools</a>
14 changes: 10 additions & 4 deletions src/posts/CAADRIA 2019.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
---
date: 2019-04-15
name: CAADRIA 2019 - Intelligent & Informed
tag: Education
icon: 📕
public: True
categories:
- Education
---

Victoria University Wellington, Wellington, New Zealand
Faculty of Architecture and Design
*April 15-18*

**Victoria University Wellington, Wellington, New Zealand**

**Faculty of Architecture and Design**

Session 4D: Building / City / Region Information Modelling / Management 3
Redback BIM: Developing a Browser-based Modelling Application Software Taxonomy

<a target="_blank" href="http://papers.cumincad.org/cgi-bin/works/paper/caadria2019_473">Redback BIM: Developing a Browser-based Modelling Application Software Taxonomy</a>
29 changes: 4 additions & 25 deletions src/posts/Graduate Designer.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,10 @@
---
date: 2020-02-06
name: Graduate Designer
tag: Career
icon:
public: True
categories:
- Career
---

Cox Architecture

testing

- print this
- another thought
- sub thought on the first
- sub thought on the first
- sub thought on the first
- sub thought on the first

| Tables | Are | Cool | Tables| Tables | Tables | Are | Cool | Tables| Tables |
| ------------- |-------------| -----| -----| ------------- | ------------- |-------------| -----| -----| ------------- |
| col 3 is | right-alignedasdsasd asd a asd asd asd as sd as adasf asd asd | $1600 | $1600 | col 3 is | col 3 is | right-alignedasdsasd asd a asd asd asd as sd as adasf asd asd | $1600 | $1600 | col 3 is |
| col 2 is | centered | $12 | $12 | col 2 is | col 2 is | centered | $12 | $12 | col 2 is |
| zebra stripes | are neat | $1 | $1 | zebra stripes | zebra stripes | are neat | $1 | $1 | zebra stripes |


hello world

Markdown | Less | Pretty
--- | --- | ---
*Still* | `renders` | **nicely**
1 | 2 | 3
Cox Architecture
4 changes: 3 additions & 1 deletion src/posts/Graduation.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
---
date: 2020-05-04
name: Graduation
tag: Education
icon: 🎓
public: True
categories:
- Education
---

Bachelor of Computational Design (Honours) with Honours Class 1 and The University Medal
23 changes: 5 additions & 18 deletions src/posts/SOBVIP.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,11 @@
---
date: 2016-10-28
name: Sydney Opera Bar VIP Centerpiece for 'The Sydney Opera House - The Opera' 2016 Event
tag: Education
icon:
public: True
categories:
- Education
- Project
---

# UNSW partners with Opera Australia on Eighth Wonder

## subheading



> this is a quote aasds asd asd alsh kasdkajshd kauhsd akushd kauhs kuasd aksh kuays iuasd lajsh dklahf iasdf isad alsd alisyd boafaljsh akusgd iausdl jalsid aosd alks oaiysdoahsd lahsod ;aoejfoslygwbkashdoa8shd lasdao8shd
>
> **- by someone**
```
print("hello world")
```

[UNSW Partners](https://newsroom.unsw.edu.au/news/art-architecture-design/unsw-partners-opera-australia-eighth-wonder)

https://www.dezeen.com/2020/12/23/landscape-industrial-design-unsw-sydney-school-show/kdjhahttps://www.dezeen.com/2020/12/23/landscape-industrial-design-unsw-sydney-school-show/kdjha
<a target="_blank" href="https://newsroom.unsw.edu.au/news/art-architecture-design/unsw-partners-opera-australia-eighth-wonder">UNSW partners with Opera Australia on Eighth Wonder</a>
8 changes: 4 additions & 4 deletions src/posts/Student Designer.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
date: 2018-02-26
name: Student Designer
tag: Career
icon:
public: True
categories:
- Career
---

Cox Architecture

![test](https://images.unsplash.com/photo-1631218274727-6210a6bae154?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=993&q=80)
Cox Architecture

0 comments on commit 7142aa1

Please sign in to comment.