layout.erb

1
2
3
4
5
6
7
8
9
<html>
<head>
<link rel="stylesheet" href="./css/style.css">
<title>BBS</title>
</head>
<body>
<%= yield%>
</body>
</html>

files & directories

BBS
├── bbs.rb
├── bbsdata.db
├── views
   ├── badrequest.erb
   ├── board.erb
   ├── ca.erb
   ├── created.erb
   ├── layout.erb
   ├── login.erb
   ├── loginfail.erb
   └── logout.erb

├── public
   └── css
       └── style.css

  #[ bundle init ] 
├── Gemfile 
  #[ bundle install ] 
├── nender #auto generated
└── Gemfile.lock #auto generated

Edit
Pub: 05 Sep 2022 18:00 UTC
Edit: 06 Sep 2022 00:06 UTC
Views: 158