雨果颜色主题不变[params.palette]

时间:2018-10-31 07:25:03

标签: docker web static themes hugo

我想将主题颜色切换为蓝色,红色或黄色,但是它不起作用。默认为绿色主题。

public static List<Integer> receiveNumbers() {
    List<Integer> res = new LinkedList<>();
    Integer prv = null;

    try (Scanner scan = new Scanner(System.in)) {
        while (true) {
            int num = scan.nextInt();

            if (prv != null && prv == num)
                break;

            res.add(num);
            prv = num;
        }
    }

    return res;
}

https://github.com/digitalcraftsman/hugo-material-docs/blob/master/exampleSite/config.toml

可能是什么问题?

0 个答案:

没有答案