質問編集履歴
1
HTMLを追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -117,3 +117,71 @@
|
|
117
117
|
}
|
118
118
|
|
119
119
|
```
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
|
124
|
+
|
125
|
+
```html
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
<div class="profile-item-wrapper">
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
<div class="profile-item">
|
134
|
+
|
135
|
+
<h5>性別</h5>
|
136
|
+
|
137
|
+
<%= @user.gender %>
|
138
|
+
|
139
|
+
</div>
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
<div class="profile-item">
|
144
|
+
|
145
|
+
<% if @age %>
|
146
|
+
|
147
|
+
<%= @age %>歳
|
148
|
+
|
149
|
+
<% end %>
|
150
|
+
|
151
|
+
</div>
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
.
|
156
|
+
|
157
|
+
.
|
158
|
+
|
159
|
+
.
|
160
|
+
|
161
|
+
|
162
|
+
|
163
|
+
<div class="profile-item long"> <!-- text型のものだけlong -->
|
164
|
+
|
165
|
+
<h5>趣味</h5>
|
166
|
+
|
167
|
+
<% if @user.favorite %>
|
168
|
+
|
169
|
+
<div class="profile-item-text">
|
170
|
+
|
171
|
+
<%= @user.favorite %>
|
172
|
+
|
173
|
+
</div>
|
174
|
+
|
175
|
+
<% end %>
|
176
|
+
|
177
|
+
</div>
|
178
|
+
|
179
|
+
|
180
|
+
|
181
|
+
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
</div>
|
186
|
+
|
187
|
+
```
|