itizawa 6 лет назад
Родитель
Сommit
e25989a178
1 измененных файлов с 28 добавлено и 1 удалено
  1. 28 1
      src/client/js/components/Admin/Customize/CustomizeLayoutSetting.jsx

+ 28 - 1
src/client/js/components/Admin/Customize/CustomizeLayoutSetting.jsx

@@ -4,7 +4,34 @@ class CustomizeLayoutSetting extends React.Component {
 
   render() {
     return (
-      <p>test hoge</p>
+      <form>
+        <div className="col-sm-4">
+          <h4>
+            <div className="radio radio-primary">
+              <input
+                type="radio"
+                id="radioLayoutGrowi"
+                name="settingForm[customize:layout]"
+                value="growi"
+                onClick="selectableTheme(event)"
+              />
+              <label htmlFor="radioLayoutGrowi">
+                  GROWI Enhanced Layout <small className="text-success">(Recommended)</small>
+              </label>
+            </div>
+          </h4>
+          <a href="/images/admin/customize/layout-crowi-plus.gif" className="ss-container">
+            <img src="/images/admin/customize/layout-crowi-plus-thumb.gif" width="240px" />
+          </a>
+          <h4>Simple and Clear</h4>
+          <ul>
+            {/* TODO i18n */}
+            <li>Full screen layout and thin margins/paddings</li>
+            <li>Show and post comments at the bottom of the page</li>
+            <li>Affix Table-of-contents</li>
+          </ul>
+        </div>
+      </form>
     );
   }