Skip to content

Commit

Permalink
adds thumbnail and share img
Browse files Browse the repository at this point in the history
  • Loading branch information
1wheel committed Aug 10, 2021
1 parent aded518 commit 5466501
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 5 deletions.
27 changes: 27 additions & 0 deletions bin/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/bin/bash

#!/usr/bin/env bash
# Copyright 2018 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# =============================================================================




parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
cd "$parent_path"
cd ..

cp images/share.png public/share.png
cp images/thumbnail.png public/thumbnail.png
Binary file added images/share.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 images/thumbnail.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -603,6 +603,10 @@ <h3 id="author-contributions">Author Contributions</h3>
<p>Adam Pearce and Emily Reif made the interactive diagrams and set up the figure aesthetics.
Benjamin Sanchez-Lengeling and Emily Reif made some of the initial image sketches.
Alex Wiltschko provided editing and writing guidance. </p>
<h3 id="discussion-and-review">Discussion and Review</h3>
<p><a href="https://github.com/distillpub/post--gnn-intro/issues/1">Review #1 - Chaitanya K. Joshi</a> <br>
<a href="https://github.com/distillpub/post--gnn-intro/issues/2">Review #2 - Patricia Robinson</a> <br>
<a href="https://github.com/distillpub/post--gnn-intro/issues/3">Review #3 - Humza Iqbal</a></p>
<d-citation-list></d-citation-list>
<d-footnote-list></d-footnote-list></p>
</d-appendix>
Expand Down
8 changes: 3 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"description": "",
"main": "index.js",
"license": "Apache 2.0",
"license": "Apache-2.0",
"engines": {
"node": ">=8.9.0"
},
Expand Down Expand Up @@ -39,10 +39,8 @@
"scripts": {
"start": "cross-env NODE_ENV=development parcel index.html --no-hmr --out-dir=./public",
"start-hmr": "cross-env NODE_ENV=development parcel index.html --out-dir=./public",
"build": "cross-env NODE_ENV=production parcel build index.html --no-minify --public-url ./ --out-dir=./public",
"clean": "rm -r public",
"pub": "bin/deploy.sh",
"deploy": "../gnn-distill-internal/bin/deploy.sh"
"build": "cross-env NODE_ENV=production parcel build index.html --no-content-hash --no-minify --public-url ./ --out-dir=./public && bin/build.sh",
"clean": "rm -r public"
},
"staticFiles": {
"staticPath": "data",
Expand Down

0 comments on commit 5466501

Please sign in to comment.