Last active
April 8, 2023 17:36
-
-
Save hoaibao44/5bdceca18505a10de4b452350aa33afa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function doGet() { | |
return HtmlService.createTemplateFromFile("index").evaluate().setTitle("GAS - chapter 2"); | |
} | |
function include(filename) { | |
return HtmlService.createHtmlOutputFromFile(filename) | |
.getContent(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<base target="_top"> | |
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous"> | |
</head> | |
<body> | |
<div class="container p-5"> | |
<div class="row mb-3 p-2 border"> | |
<div class="col-2"> | |
<img src="https://picsum.photos/seed/1/300/300" height="150" width="150"> | |
</div> | |
<div class="col-5"> | |
<p class="fs-3 text-primary">DT0083 - Stormie</p> | |
<p class="fs-5 text-secondary">Lazy developer</p> | |
</div> | |
</div> | |
<div class="row p-2 border"> | |
<div class="col-2"> | |
<img src="https://picsum.photos/seed/2/300/300" height="150" width="150"> | |
</div> | |
<div class="col-5"> | |
<p class="fs-3 text-primary">DT0369 - XaTha</p> | |
<p class="fs-5 text-secondary">Angry developer</p> | |
</div> | |
</div> | |
</div> | |
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment