瀏覽代碼

front page gets 6 random tools

joel
Simon Bowie 2 年之前
父節點
當前提交
cef5f7332d
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      web/app/main.py

+ 1
- 1
web/app/main.py 查看文件

@@ -18,7 +18,7 @@ main = Blueprint('main', __name__)
# route for index page
@main.route('/')
def index():
tools = Resource.query.filter_by(type='tool').order_by(func.random()).limit(5).all()
tools = Resource.query.filter_by(type='tool').order_by(func.random()).limit(6).all()
with open('content/home.md', 'r') as f:
text = f.read()
text = markdown.markdown(text)

Loading…
取消
儲存