Commit 2d070633 authored by Almira Redoble's avatar Almira Redoble

Added urls.py and created view for about app

parent b33a9d8d
from django.urls import path
from .views import index
urlpatterns = [
path('', index, name='index'),
]
app_name = "about"
from django.shortcuts import render
from django.http import HttpResponse
def index(request):
return HttpResponse("I'm Almira Redoble, a sophomore in BS CS-DGDD, and I \
wouldn't have gotten this far if it weren't for the music that has \
kept me company. Back then, I'd listen to mainly pop and musicals but \
with the coming of Spotify, my beloved, my taste in music started its \
growth and development stages. Now, according to Spotify, I listen to \
Pop, K-Pop, R&B, OPM, Musicals and Rap.")
# Create your views here.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment