Skip to content

Instantly share code, notes, and snippets.

@phm200
Created September 11, 2018 21:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phm200/c880155cb60b045bcedb3643104345c0 to your computer and use it in GitHub Desktop.
Save phm200/c880155cb60b045bcedb3643104345c0 to your computer and use it in GitHub Desktop.
Connect User API Express App - index pug view
html
head
title= title
link(rel="stylesheet" href="css/base.css")
body
h2= "Users in my Connect Instance (" + dataList.length + ")"
ul
each val in dataList
li
a(href="user/" + val.Id) #{val.Username}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment