Skip to content

Commit

Permalink
CSS changes and updated license disclaimer
Browse files Browse the repository at this point in the history
  • Loading branch information
alessiasacchi committed Aug 21, 2023
1 parent b35f615 commit fe81873
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 33 deletions.
30 changes: 16 additions & 14 deletions goodbye-graffiti-agent/site/app.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
// Copyright 2017 Google LLC
//
// 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.
/**
* Copyright 2023 Google LLC
*
* 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.
*/

'use strict';

Expand All @@ -21,7 +23,7 @@ const app = express();
var path = __dirname + '/views/';

app.use('/img',express.static(__dirname +'/views/img'));
app.use('/assets',express.static(__dirname +'/assets/'));
app.use('/assets',express.static(__dirname +'/views/assets'));

app.get('/', (req, res) => {
res.sendFile(path + "index.html");
Expand Down
16 changes: 0 additions & 16 deletions goodbye-graffiti-agent/site/app.yaml

This file was deleted.

6 changes: 3 additions & 3 deletions goodbye-graffiti-agent/site/views/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<link rel="canonical" href="https://getbootstrap.com/docs/5.0/examples/starter-template/">
<!-- Bootstrap core CSS -->
<link href="/assets/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/dist/css/bootstrap.min.css" rel="stylesheet">

<style>
.bd-placeholder-img {
Expand All @@ -30,7 +30,7 @@


<!-- Custom styles for this template -->
<link href="/assets/dist/css/starter-template.css" rel="stylesheet">
<link href="assets/dist/css/starter-template.css" rel="stylesheet">
</head>
<body>

Expand Down Expand Up @@ -108,7 +108,7 @@ <h2>Google Maps Platform</h2>
</main>

</div>
<script src="../assets/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="https://www.gstatic.com/dialogflow-console/fast/messenger-cx/prod/df-messenger.min.js?v=1"></script>
<df-messenger
Expand Down

0 comments on commit fe81873

Please sign in to comment.