-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
1,281 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/vendor | ||
/.idea |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
</div> | ||
|
||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.js"></script> | ||
|
||
<?php wp_footer();?> | ||
</body> | ||
|
||
</html> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<!-- This website was coded LINE by LINE by: Eduardo Botelho ^^ --> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- important to make website responsive --> | ||
<title>Eduardo Botelho</title> | ||
|
||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.css" rel="stylesheet"> | ||
<link href="<?php echo get_template_directory_uri(); ?>/style.css" rel="stylesheet"> | ||
<script> | ||
function switchTab(tabID, contactID) { | ||
var tab = document.getElementById(tabID) | ||
if (tab.classList.contains("active")){ | ||
|
||
} else { | ||
var hamburguer = document.getElementById("navbarSupportedContent"); | ||
hamburguer.classList.remove("show") | ||
if (hamburguer.classList.contains("collapsing")){ | ||
setTimeout(() => { hamburguer.classList.remove("show") }, 200); | ||
} | ||
|
||
var triggerElement = document.getElementById(tabID) | ||
var tabTrigger = new bootstrap.Tab(triggerElement) | ||
tabTrigger.show(); | ||
|
||
var ListActives = document.getElementsByClassName("active") | ||
for(let i = 0; i< ListActives.length; i++){ | ||
ListActives[i].classList.remove("active"); | ||
} | ||
|
||
var triggerElement2 = document.getElementById(tabID) | ||
triggerElement2.classList.add("active"); | ||
|
||
}; | ||
|
||
|
||
|
||
|
||
|
||
}; | ||
|
||
function unshow(tabID){ | ||
|
||
|
||
} | ||
</script> | ||
<script src="https://kit.fontawesome.com/13b7256d55.js" crossorigin="anonymous"></script> | ||
|
||
|
||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Alatsi&display=swap" rel="stylesheet"> | ||
|
||
|
||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Catamaran:wght@300;400;500;700;900&display=swap" rel="stylesheet"> | ||
|
||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700&display=swap" rel="stylesheet"> | ||
|
||
|
||
<?php wp_head();?> | ||
</head> | ||
<body> | ||
<div class="main"> |
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.
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.
Oops, something went wrong.