Commit c7a4948f authored by Ysabella Panghulan's avatar Ysabella Panghulan

edited views.py and created urls.py for about app

parent 8ce896ec
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='about'),
]
\ No newline at end of file
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def index(request):
return HttpResponse('Hi, my name is Ysabella Panghulan, but you can call me Bella for short. I\'m a sophmore studying BS Computer Science at Ateneo de Manila University. As a music lover, my taste in music is diverse. I mainly listen to pop music, which is my go-to genre. I also enjoy K-Pop and have an appreciation for international artists like Charlie Puth, Rex Orange County, and Michael Buble, who bring their own unique sounds and styles. I also have a soft spot for OPM (Original Pilipino Music) because I can relate and connect more with the local culture and emotions expressed in the songs. Some of my favorite OPM artists include Mayonnaise, December Avenue, Zack Tabudlo, and Adie. I love classic songs as well, especially from artists like Big Mountain, The Foundations, and The Beatles. I often play old songs to start my day. Overall, I love diverse genres, styles, and artists. I appreciate any song that brings good vibes on good days and comfort on bad days.')
\ No newline at end of file
......@@ -17,6 +17,7 @@ from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path('about/', include('about.urls')),
path('homepage/', include('homepage.urls')),
path('admin/', admin.site.urls),
]
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