For my app I would like for each user to have several generated pages of their own. For example, if the user is John Smith, the URLs would look like this:
MyBubbleAppName.com/JohnSmith/profile
MyBubbleAppName.com/JohnSmith/resume
MyBubbleAppName.com/JohnSmith/blog
After reviewing some posts in this forum, I was able to do this:
MyBubbleAppName.com/profile/JohnSmith
through the use of slugs and grabbing data from the URL. However, as you can see, that’s not quite the structure that I’m after. Is what I’m trying to do feasible? If so, how would I go about it?