forked from HKCodeCamp/vocably
-
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
2 changed files
with
53 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 |
---|---|---|
|
@@ -35,3 +35,6 @@ pip-log.txt | |
|
||
#Admin | ||
AWS.md | ||
|
||
#OAuth2 | ||
config/credentials |
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,50 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title> | ||
</title> | ||
<link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/jquery.mobile/1.1.1/jquery.mobile-1.1.1.min.css" /> | ||
<link rel="stylesheet" href="/css/style.css" /> | ||
<style> | ||
/* App custom styles */ | ||
</style> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"> | ||
</script> | ||
<script src="https://ajax.aspnetcdn.com/ajax/jquery.mobile/1.1.1/jquery.mobile-1.1.1.min.js"> | ||
</script> | ||
<script src="/js/main.js"> | ||
</script> | ||
</head> | ||
<body> | ||
<!-- Home --> | ||
<div data-role="page" id="page1"> | ||
<div data-role="content"> | ||
<div style="width: 40px; height: 35px; position: relative;"> | ||
<img src="/img/monkey_sm.png" alt="image" /> | ||
</div> | ||
<h2> | ||
Your list of words | ||
</h2> | ||
<div data-role="collapsible-set"> | ||
<div data-role="collapsible" class="collapsible"> | ||
<h3> | ||
Word 1 | ||
</h3> | ||
<p>Definition</p> | ||
</div> | ||
<div data-role="collapsible"> | ||
<h3> | ||
Word 2 | ||
</h3> | ||
<p>Definition</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<script> | ||
//App custom javascript | ||
</script> | ||
</body> | ||
</html> |