mirror of
https://github.com/thewesker/bug-em.git
synced 2025-12-21 20:41:05 -05:00
lol
This commit is contained in:
24
node_modules/oauth/examples/express-gdata/views/google_contacts.ejs
generated
vendored
Normal file
24
node_modules/oauth/examples/express-gdata/views/google_contacts.ejs
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
|
||||
<p><a href="/google_calendars">Check google_calendars</a></p>
|
||||
|
||||
<h1>Google Contacts</h1>
|
||||
|
||||
<% for(var i = 0 ; i < feed.feed.entry.length ; i++ ) {
|
||||
|
||||
var contact = feed.feed.entry[i]; %>
|
||||
|
||||
<div>
|
||||
<!-- you can access much more ! Just a sample: -->
|
||||
<%= contact["title"]["$t"] %>
|
||||
<% emails = contact["gd$email"] %>
|
||||
|
||||
<ul>
|
||||
<% for(var j = 0 ; j < emails.length ; j++) { %>
|
||||
<li><%= emails[j]["address" ]%></li>
|
||||
<% } %>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<% } %>
|
||||
Reference in New Issue
Block a user