Commit
+4 -6 +/-3 browse
1 | diff --git a/README.md b/README.md |
2 | index 2672d8b..826c8c4 100644 |
3 | --- a/README.md |
4 | +++ b/README.md |
5 | @@ -96,8 +96,6 @@ scripts/check_build_dependencies.sh |
6 | scripts/init_db_if_missing.sh |
7 | # install pico css |
8 | npm install |
9 | - # compile theme css |
10 | - scripts/compile_stylesheets.sh |
11 | # build the project |
12 | cargo build |
13 | ``` |
14 | diff --git a/ayllu/themes/default/templates/commit.html b/ayllu/themes/default/templates/commit.html |
15 | index 6c9b9c6..f7a312f 100644 |
16 | --- a/ayllu/themes/default/templates/commit.html |
17 | +++ b/ayllu/themes/default/templates/commit.html |
18 | @@ -38,9 +38,9 @@ |
19 | <section> |
20 | <b>{{ commit.summary }}</b> |
21 | {% if extended_commit_message %} |
22 | - <br /> |
23 | - <br /> |
24 | - <p class="commit-message">{{ commit.message }}</p> |
25 | + <div class="message"> |
26 | + <pre>{{ commit.message }}</pre> |
27 | + </div> |
28 | {% endif %} |
29 | </section> |
30 | {{ diff.1 | safe }} |
31 | diff --git a/scripts/watch.sh b/scripts/watch.sh |
32 | index 83e939d..76e1a8f 100755 |
33 | --- a/scripts/watch.sh |
34 | +++ b/scripts/watch.sh |
35 | @@ -13,4 +13,4 @@ else |
36 | PACKAGE_FLAGS="--package=ayllu" |
37 | fi |
38 | |
39 | - cargo watch "${IGNORE_FLAGS}" -s "scripts/compile_stylesheets.sh && cargo run $PACKAGE_FLAGS -- serve" |
40 | + cargo watch "${IGNORE_FLAGS}" -s "cargo run $PACKAGE_FLAGS -- serve" |