25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

17 satır
536 B

  1. <!-- 岗位列表 -->
  2. <div class="col-job-list">
  3. {% if contentData.list and contentData.list.length > 0 %}
  4. {% for item in contentData.list %}
  5. <div class="col-job-item">
  6. <div class="col-job-header">
  7. <h3>{{item.title}}</h3>
  8. {% if item.location %}<span class="col-job-loc">{{item.location}}</span>{% endif %}
  9. </div>
  10. {% if item.description %}<p class="col-job-desc">{{item.description}}</p>{% endif %}
  11. </div>
  12. {% endfor %}
  13. {% else %}
  14. <div class="col-empty">暂无招聘信息</div>
  15. {% endif %}
  16. </div>