使用thymleaf电子邮件的基础

时间:2016-11-01 16:08:35

标签: zurb-foundation href thymeleaf

我有一个漆黑的基础模板。这是必要的片段:

<button class="large expand" href="#">Activate account</button>

我需要用'th:href'属性替换'href'属性,但是当我这样做时,基础构建一个没有th:href标签的html页面。

我正在寻找一种方法来改变thymleaf的href-link。

注意:我正在使用基础电子邮件堆栈。

1 个答案:

答案 0 :(得分:1)

你可以教Inky如何处理自定义属性,在这种情况下调用一个 的个:HREF

在您的node-modules文件夹中,打开 inky / lib / componentFactory.js 。寻找按钮组件,你会发现这样的东西:

    // <button>
case this.components.button:
  var expander = '';

  // Prepare optional target attribute for the <a> element
  var target = '';
  if (element.attr('target')) {
    target = ' target=' + element.attr('target');
  }

  // If we have the href attribute we can create an anchor for the inner of the button;
  if (element.attr('href')) {
    inner = format('<a href="%s"%s>%s</a>', element.attr('href'), target, inner);
  }


  // If the button is expanded, it needs a <center> tag around the content
  if (element.hasClass('expand') || element.hasClass('expanded')) {
    inner = format('<center>%s</center>', inner);
    expander = '\n<td class="expander"></td>';
  }

  // The .button class is always there, along with any others on the <button> element
  var classes = ['button'];
  if (element.attr('class')) {
    classes = classes.concat(element.attr('class').split(' '));
  }

  return format('<table class="%s"><tr><td><table><tr><td>%s</td></tr></table></td>%s</tr></table>', classes.join(' '), inner, expander);

添加以下代码块:

      // If we have the th:href attribute we can create an anchor for the inner of the button;
  if (element.attr('th:href')) {
    inner = format('<a th:href="%s"%s>%s</a>', element.attr('th:href'), target, inner);
  }

希望它有效!