Currently, I am leveraging Express to construct a website. However, there seems to be an issue with my jade template not displaying the bootstrap grid system accurately. Despite double-checking that my app path is correctly set through app.use(express.static(path_join... the problem persists. Here's my layout.jade:
doctype
html( lang="en" )
head
title Edward's Photo Album
link(rel='stylesheet' href='/bootstrap-3.3.6-dist/css/bootstrap.min.css')
body
block content
Below is my cats.jade file:
extends layout
block content
-for(var x=1; x<=imagenum-1; x++)
.row
.col-md-4
h2 hello world
Instead of being displayed horizontally, "hello world" appears vertically. https://gyazo.com/968198ce7016a06d9bc7964a18a6d848